Compare commits

..

3 Commits

Author SHA1 Message Date
mi
db2a823a65 📝 icon 2025-11-07 16:39:44 +10:00
mi
7c2265bb95 🍱 add icon 2025-11-07 16:38:24 +10:00
mi
c518cfd3cd 🍱 track *.ico 2025-11-07 16:37:10 +10:00
7 changed files with 11 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -1,3 +1,4 @@
**/*.jpg filter=lfs diff=lfs merge=lfs -text **/*.jpg filter=lfs diff=lfs merge=lfs -text
**/*.png filter=lfs diff=lfs merge=lfs -text **/*.png filter=lfs diff=lfs merge=lfs -text
**/*.gif filter=lfs diff=lfs merge=lfs -text **/*.gif filter=lfs diff=lfs merge=lfs -text
**/*.ico filter=lfs diff=lfs merge=lfs -text

View File

@@ -262,6 +262,10 @@ The app exposes a JSON API for programmatic access:
Returns 404 with `{"error": "Comic not found"}` if the comic doesn't exist. Returns 404 with `{"error": "Comic not found"}` if the comic doesn't exist.
## Credits
- Favicon generated using [favicon.io](https://favicon.io)
## License ## License
[Add your license here] [Add your license here]

BIN
static/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
static/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

BIN
static/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 954 B

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -22,6 +22,12 @@
<meta property="twitter:description" content="{% block twitter_description %}{{ self.og_description() }}{% endblock %}"> <meta property="twitter:description" content="{% block twitter_description %}{{ self.og_description() }}{% endblock %}">
<meta property="twitter:image" content="{% block twitter_image %}{{ self.og_image() }}{% endblock %}"> <meta property="twitter:image" content="{% block twitter_image %}{{ self.og_image() }}{% endblock %}">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16x16.png') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='apple-touch-icon.png') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="alternate" type="application/rss+xml" title="Sunday Comics RSS Feed" href="{{ url_for('static', filename='feed.rss') }}"> <link rel="alternate" type="application/rss+xml" title="Sunday Comics RSS Feed" href="{{ url_for('static', filename='feed.rss') }}">
{% block extra_css %}{% endblock %} {% block extra_css %}{% endblock %}