diff options
author | claw0ry <me@claw0ry.net> | 2024-12-20 09:06:26 +0100 |
---|---|---|
committer | claw0ry <me@claw0ry.net> | 2024-12-20 09:15:48 +0100 |
commit | 69ad4ffdbbc151c8252ec3faa1105eb319536dd5 (patch) | |
tree | 56c5b31777d82ff968dd66c8a545389b052ff2a3 /themes/plaintext/layouts | |
parent | posts: format json with python (diff) |
theme: christmas effect
Diffstat (limited to 'themes/plaintext/layouts')
-rw-r--r-- | themes/plaintext/layouts/_default/baseof.html | 1 | ||||
-rw-r--r-- | themes/plaintext/layouts/index.html | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/themes/plaintext/layouts/_default/baseof.html b/themes/plaintext/layouts/_default/baseof.html index 2f38a78..fcc943c 100644 --- a/themes/plaintext/layouts/_default/baseof.html +++ b/themes/plaintext/layouts/_default/baseof.html @@ -31,6 +31,7 @@ {{ partial "footer.html" . }} </footer> </div> + <script src="/snow.js"></script> </body> </html> diff --git a/themes/plaintext/layouts/index.html b/themes/plaintext/layouts/index.html index da61394..1684fde 100644 --- a/themes/plaintext/layouts/index.html +++ b/themes/plaintext/layouts/index.html @@ -1,5 +1,9 @@ {{ define "main" }} -<h1>claw0ry.net</h1> + +<div class="page-title"> + <img src="/santa-hat.png" width="16" height="16" alt="santa's hat" /> + <h1>claw0ry.net</h1> +</div> <div class="intro"> <p>Hi, my name is Mads! *waves*</p> @@ -31,7 +35,7 @@ </h2> <p class="post-byline">Posted: {{ .Date.Format "02-03-2006" }} | {{ .WordCount }} words</p> <div class="post-body">{{ .Summary }}</div> - <p><a href="{{ .Permalink }}">Read more »</a></p> + <p><a class="read-more" href="{{ .Permalink }}">Read more »</a></p> </article> <hr /> @@ -42,4 +46,5 @@ <hr /> </section> <!-- end .post-list --> + {{ end }} |