Add favicon

This commit is contained in:
Gabriel Augendre 2020-08-20 21:18:24 +02:00
parent 9904c9e4bb
commit afc3203ff2
11 changed files with 37 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/static/icons/mstile-150x150.png"/>
<TileColor>#226997</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -0,0 +1,13 @@
{
"name": "Gab's Notes",
"short_name": "Gab's Notes",
"icons": [
{
"src": "/static/icons/android-chrome-96x96.png",
"sizes": "96x96",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff"
}

View file

@ -10,6 +10,7 @@
<link rel="stylesheet" href="{% static 'style.css' %}" type="text/css">
<script src="{% static 'toggle-dark-mode.js' %}"></script>
<link rel="alternate" type="application/rss+xml" title="Gab's Notes » Feed" href="{% url 'complete-feed' %}">
{% include "articles/favicon.html" %}
</head>
<body>
<nav>

View file

@ -0,0 +1,13 @@
{% load static %}
<link rel="apple-touch-icon" sizes="120x120" href="{% static 'icons/apple-touch-icon.png' %}">
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'icons/favicon-32x32.png' %}">
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'icons/favicon-16x16.png' %}">
<link rel="manifest" href="{% static 'icons/site.webmanifest' %}">
<link rel="mask-icon" color="#226997" href="{% static 'icons/safari-pinned-tab.svg' %}">
<link rel="shortcut icon" href="{% static 'icons/favicon.ico' %}">
<meta name="apple-mobile-web-app-title" content="Gab's Notes">
<meta name="application-name" content="Gab's Notes">
<meta name="msapplication-TileColor" content="#226997">
<meta name="msapplication-config" content="/static/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">