diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 20:31:01 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 20:31:01 +0100 |
commit | e7596b1b3cb58ad774aa8b7fad66d5f2298baa1a (patch) | |
tree | 4277c5abe8e4b72159a6cc07bf58581e9572cf92 /_layouts/default.html | |
parent | 596cdbdf682ef467bd99cb87dbeeb5ac98153d19 (diff) |
add stale indicator + admonition css
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index fa4902f..9a48c60 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -13,6 +13,7 @@ <title>{{ site.title }}</title> {% endif %} <link rel="stylesheet" href="/style.css"> + <script src="/script.js" defer></script> </head> <body> <header class="invert plainlink"> @@ -33,6 +34,7 @@ </nav> <article class="limitwidth content"> {% if page.toc %}{% toc %}{% endif %} + {% if page.post %}{% include outdated.html date=page.date %}{% endif %} {{ content }} </article> {% if page.post %} |