Add favicon
BIN
articles/static/icons/android-chrome-96x96.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
articles/static/icons/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
9
articles/static/icons/browserconfig.xml
Normal 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>
|
BIN
articles/static/icons/favicon-16x16.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
articles/static/icons/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
articles/static/icons/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
articles/static/icons/mstile-150x150.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
1
articles/static/icons/safari-pinned-tab.svg
Normal file
After Width: | Height: | Size: 5.8 KiB |
13
articles/static/icons/site.webmanifest
Normal 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"
|
||||
}
|
|
@ -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>
|
||||
|
|
13
articles/templates/articles/favicon.html
Normal 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">
|