diff options
| -rw-r--r-- | content/2020/test-post.md | 2 | ||||
| -rw-r--r-- | content/static/favicon.ico (renamed from content/images/favicon.ico) | bin | 2294 -> 2294 bytes | |||
| -rw-r--r-- | pelicanconf.py | 7 | ||||
| -rw-r--r-- | themes/gamerdonkey-theme/templates/base.html | 2 |
4 files changed, 9 insertions, 2 deletions
diff --git a/content/2020/test-post.md b/content/2020/test-post.md index fa77dfd..7769957 100644 --- a/content/2020/test-post.md +++ b/content/2020/test-post.md @@ -2,7 +2,7 @@ Title: Test Post Date: 2020-05-23 Category: Test Tags: test, deleteme -Status: draft +Status: published Summary: A test post, wherein I talk about testing posts. In this post, I'll be talking about testing how making a post works. diff --git a/content/images/favicon.ico b/content/static/favicon.ico Binary files differindex a12ee94..a12ee94 100644 --- a/content/images/favicon.ico +++ b/content/static/favicon.ico diff --git a/pelicanconf.py b/pelicanconf.py index bfadb5d..37f3c85 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -48,3 +48,10 @@ DISPLAY_CATEGORIES_ON_MENU = False DEFAULT_METADATA = { 'status': 'draft', } + +# Static Files +STATIC_PATHS = ['static'] + +EXTRA_PATH_METADATA = { + 'static/favicon.ico': {'path': 'favicon.ico'}, +} diff --git a/themes/gamerdonkey-theme/templates/base.html b/themes/gamerdonkey-theme/templates/base.html index c1eb7e8..91f91b8 100644 --- a/themes/gamerdonkey-theme/templates/base.html +++ b/themes/gamerdonkey-theme/templates/base.html @@ -4,5 +4,5 @@ {{ super() }} <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css" /> - <link rel="shortcut icon" href="{{ SITEURL }}/images/favicon.ico?v=2" /> + <link rel="shortcut icon" href="{{ SITEURL }}/favicon.ico?v=2" /> {% endblock %} |
