Files
ivatar/templates/header.html

35 lines
2.4 KiB
HTML

{% load static %}
{% load i18n %}
<link rel="author" type="text/plain" href="{% static 'humans.txt' %}">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="{% static '/img/nobody/57.png' %}">{# iPhone #}
<link rel="apple-touch-icon" sizes="60x60" href="{% static '/img/nobody/60.png' %}">
<link rel="apple-touch-icon" sizes="72x72" href="{% static '/img/nobody/72.png' %}">{# iPad #}
<link rel="apple-touch-icon" sizes="76x76" href="{% static '/img/nobody/76.png' %}">
<link rel="apple-touch-icon" sizes="114x114" href="{% static '/img/nobody/114.png' %}">{# iPhone (hi-res) #}
<link rel="apple-touch-icon" sizes="120x120" href="{% static '/img/nobody/120.png' %}">{# iPhone (retina) #}
<link rel="apple-touch-icon" sizes="144x144" href="{% static '/img/nobody/144.png' %}">{# iPad (hi-res) #}
<link rel="apple-touch-icon" sizes="152x152" href="{% static '/img/nobody/152.png' %}">{# iPad #}
<link rel="apple-touch-icon" sizes="167x167" href="{% static '/img/nobody/167.png' %}">{# iPad (retina) #}
<link rel="apple-touch-icon" sizes="180x180" href="{% static '/img/nobody/180.png' %}">{# iPhone (retina) #}
<link rel="icon" type="image/png" href="{% static '/img/nobody/16.png' %}" sizes="16x16">
<link rel="icon" type="image/png" href="{% static '/img/nobody/32.png' %}" sizes="32x32">
<link rel="icon" type="image/png" href="{% static '/img/nobody/96.png' %}" sizes="96x96">
<link rel="icon" type="image/png" href="{% static '/img/nobody/128.png' %}" sizes="128x128">
<link rel="icon" type="image/png" href="{% static '/img/nobody/195.png' %}" sizes="195x195">
<link rel="mask-icon" href="{% static '/img/safari-pinned-tab.svg' %}" color="#fa711f">
<link rel="stylesheet" href="{% static '/css/ivatar.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'line-awesome/css/line-awesome-font-awesome.min.css' %}">
{% if user.is_authenticated %}
{% if user.userpreference and user.userpreference.theme != 'default' %}
<link rel="stylesheet" href="{% static 'css/' %}{{ user.userpreference.theme }}.css" type="text/css">
{% endif %}
{% endif %}
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileImage" content="{% static '/img/nobody/144.png' %}">
<meta name="msapplication-TileColor" content="#fa711f">
<meta name="apple-mobile-web-app-title" content="ivatar">
<meta name="application-name" content="ivatar">
<meta name="theme-color" content="#fa711f">
{% block header %}{% endblock header %}