Files
Anthias/templates/head.html
nicomiguelino 819841e588 Switch to a dark background and light text.
- Change the main font to "Plus Jakarta Sans".
- Changed the favicon.
- Added other minor UI tweaks.
2023-01-26 11:09:05 -08:00

55 lines
2.9 KiB
HTML

<meta charset="utf-8"/>
{% if context.player_name %}
<title>Anthias - {{ context.player_name }}</title>
{% else %}
<title>Anthias</title>
{% endif %}
<link href="/static/favicons/apple-touch-icon-57x57.png" rel="apple-touch-icon-precomposed" sizes="57x57"/>
<link href="/static/favicons/apple-touch-icon-114x114.png" rel="apple-touch-icon-precomposed" sizes="114x114"/>
<link href="/static/favicons/apple-touch-icon-72x72.png" rel="apple-touch-icon-precomposed" sizes="72x72"/>
<link href="/static/favicons/apple-touch-icon-144x144.png" rel="apple-touch-icon-precomposed" sizes="144x144"/>
<link href="/static/favicons/apple-touch-icon-60x60.png" rel="apple-touch-icon-precomposed" sizes="60x60"/>
<link href="/static/favicons/apple-touch-icon-120x120.png" rel="apple-touch-icon-precomposed" sizes="120x120"/>
<link href="/static/favicons/apple-touch-icon-76x76.png" rel="apple-touch-icon-precomposed" sizes="76x76"/>
<link href="/static/favicons/apple-touch-icon-152x152.png" rel="apple-touch-icon-precomposed" sizes="152x152"/>
<link href="/static/favicons/favicon-196x196.png" rel="icon" sizes="196x196" type="image/png"/>
<link href="/static/favicons/favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"/>
<link href="/static/favicons/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/>
<link href="/static/favicons/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/>
<link href="/static/favicons/favicon-128.png" rel="icon" sizes="128x128" type="image/png"/>
<link href="https://fonts.googleapis.com/css?family=Plus Jakarta Sans" rel="stylesheet">
<link rel="icon" href="/static/favicons/favicon.ico">
<meta content="screenly-ose;" name="application-name"/>
<meta content="#FFFFFF" name="msapplication-TileColor"/>
<meta content="/static/favicons/mstile-144x144.png" name="msapplication-TileImage"/>
<meta content="/static/favicons/mstile-70x70.png" name="msapplication-square70x70logo"/>
<meta content="/static/favicons/mstile-150x150.png" name="msapplication-square150x150logo"/>
<meta content="/static/favicons/mstile-310x150.png" name="msapplication-wide310x150logo"/>
<meta content="/static/favicons/mstile-310x310.png" name="msapplication-square310x310logo"/>
<link href="{{ url_for('static', filename='css/screenly.css') }}" rel="stylesheet"/>
<link href="{{ url_for('static', filename='fontawesome/css/all.css') }}" rel="stylesheet"/>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="{{ url_for('static', filename='js/jquery-1.9.1.min.js') }}"></script>
{% if context.is_demo %}
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-37846380-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-37846380-3');
</script>
{% endif %}