2018-04-18 21:00:36 +00:00
|
|
|
{% import '_globals.njk' as globals %}
|
|
|
|
<!DOCTYPE html>
|
2018-04-25 14:11:15 +00:00
|
|
|
<html lang="en">
|
2018-04-18 21:00:36 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="description" content="{{ globals.description }}">
|
|
|
|
<meta name="keywords" content="upload,{{ globals.name }},file,images,hosting">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2018-08-30 18:45:51 +00:00
|
|
|
|
2018-04-18 21:00:36 +00:00
|
|
|
<title>{{ title | default(globals.name + ' – ' + globals.motto) | safe }}</title>
|
|
|
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
<!-- Stylesheets -->
|
2018-12-11 12:31:48 +00:00
|
|
|
<link rel="stylesheet" href="libs/bulma/bulma.min.css?v={{ globals.v3 }}">
|
|
|
|
<link rel="stylesheet" href="css/style.css?v={{ globals.v1 }}">
|
2018-04-18 21:00:36 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2018-04-23 19:58:44 +00:00
|
|
|
{% block opengraph %}
|
2018-04-18 21:00:36 +00:00
|
|
|
<!-- Open Graph tags -->
|
|
|
|
<meta property="og:url" content="{{ globals.root }}" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:title" content="{{ globals.name }} – {{ globals.motto }}" />
|
|
|
|
<meta property="og:description" content="{{ globals.description }}" />
|
2018-04-26 12:53:19 +00:00
|
|
|
<meta property="og:image" content="{{ globals.root }}/icons/600px.png?v={{ globals.v2 }}" />
|
2018-04-18 21:00:36 +00:00
|
|
|
<meta property="og:image:width" content="600" />
|
|
|
|
<meta property="og:image:height" content="600" />
|
2018-04-26 12:53:19 +00:00
|
|
|
<meta property="og:image" content="{{ globals.root }}/images/fb_share.png?v={{ globals.v2 }}" />
|
2018-04-18 21:00:36 +00:00
|
|
|
<meta property="og:image:width" content="1200" />
|
|
|
|
<meta property="og:image:height" content="630" />
|
|
|
|
<meta property="og:locale" content="en_US" />
|
|
|
|
|
|
|
|
<!-- Twitter Card tags -->
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:title" content="{{ globals.name }} – {{ globals.motto }}">
|
|
|
|
<meta name="twitter:description" content="{{ globals.description }}">
|
2018-04-26 12:53:19 +00:00
|
|
|
<meta name="twitter:image" content="{{ globals.root }}/icons/600px.png?v={{ globals.v2 }}">
|
2018-04-18 21:00:36 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
<!-- Icons, configs, etcetera -->
|
2018-12-11 12:31:48 +00:00
|
|
|
<link rel="icon" href="{{ globals.root }}/icons/32pxr.png?v={{ globals.v2 }}" sizes="32x32">
|
|
|
|
<link rel="icon" href="{{ globals.root }}/icons/96pxr.png?v={{ globals.v2 }}" sizes="96x96">
|
2018-04-26 13:01:29 +00:00
|
|
|
<link rel="apple-touch-icon" href="{{ globals.root }}/icons/120px.png?v={{ globals.v2 }}" sizes="120x120">
|
|
|
|
<link rel="apple-touch-icon" href="{{ globals.root }}/icons/152px.png?v={{ globals.v2 }}" sizes="152x152">
|
|
|
|
<link rel="apple-touch-icon" href="{{ globals.root }}/icons/167px.png?v={{ globals.v2 }}" sizes="167x167">
|
|
|
|
<link rel="apple-touch-icon" href="{{ globals.root }}/icons/180px.png?v={{ globals.v2 }}" sizes="180x180">
|
2018-04-26 12:53:19 +00:00
|
|
|
<link rel="manifest" href="{{ globals.root }}/icons/manifest.json?v={{ globals.v2 }}">
|
2018-04-18 21:00:36 +00:00
|
|
|
<meta name="apple-mobile-web-app-title" content="{{ globals.name }}">
|
|
|
|
<meta name="application-name" content="{{ globals.name }}">
|
2018-04-26 12:53:19 +00:00
|
|
|
<meta name="msapplication-config" content="{{ globals.root }}/icons/browserconfig.xml?v={{ globals.v2 }}">
|
2018-04-18 21:00:36 +00:00
|
|
|
<meta name="theme-color" content="#232629">
|
2018-08-30 18:45:51 +00:00
|
|
|
{% block endmeta %}{% endblock %}
|
2018-04-18 21:00:36 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block content %}{% endblock %}
|
2018-08-30 18:45:51 +00:00
|
|
|
{% block scripts %}{% endblock %}
|
2018-04-18 21:00:36 +00:00
|
|
|
</body>
|
|
|
|
</html>
|