diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-03-02 13:17:26 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-03-02 13:17:26 +0200 |
commit | 17dae0eaa459fdabafff1a05c524cb263b7018f6 (patch) | |
tree | 6858784b91d62d36a6c226b83cb0b7540df7c423 /templates/404.html | |
parent | 8ee207dc1034eeeb8f48c0c9ca58c6f29df95ae7 (diff) |
Modularity within config.toml to allow for meta tag customizations.
Changes to be committed:
modified: config.toml
modified: rsync_to_testing
modified: templates/404.html
modified: templates/index.html
modified: templates/page.html
modified: templates/tags/single.html
Diffstat (limited to 'templates/404.html')
-rw-r--r-- | templates/404.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/404.html b/templates/404.html index d885ede..94a6247 100644 --- a/templates/404.html +++ b/templates/404.html @@ -37,7 +37,7 @@ <h1>404</h1> <p>Oops, police door not found...</p> <p class="btn-404"> - <a href="{{config.base_url}}"> + <a href="{{ config.base_url }}"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"> @@ -46,7 +46,7 @@ </svg> Home </a> - <a href='{{config.base_url}}/posts'> + <a href='{{ config.base_url }}/posts'> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-archive"> |