Compare commits
3 Commits
203b17be0e
...
db2a823a65
| Author | SHA1 | Date | |
|---|---|---|---|
| db2a823a65 | |||
| 7c2265bb95 | |||
| c518cfd3cd |
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||||
|
|||||||
@@ -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
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
BIN
static/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 484 B |
BIN
static/favicon-32x32.png
Normal file
BIN
static/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 954 B |
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@@ -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 %}
|
||||||
|
|||||||
Reference in New Issue
Block a user