diff options
author | mounderfod <mounderfod@gmail.com> | 2023-07-13 15:00:49 +0100 |
---|---|---|
committer | mounderfod <mounderfod@gmail.com> | 2023-07-13 15:00:49 +0100 |
commit | e7a750af28583066f35c40eb1ab4db2a03aa3aca (patch) | |
tree | 5cc268b8e33e04e655fe6f4409eee6fabd9a9ab8 /_layouts | |
parent | 5bdfb4d4a2dcb83e466b4c021548a0eac6171f25 (diff) | |
download | website-e7a750af28583066f35c40eb1ab4db2a03aa3aca.tar.gz |
IndieWeb part 10
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/post.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 40e3bc8..93c1a5e 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,6 +9,7 @@ layout: default <time class="dt-published" datetime="{{page.date}}"> <p><em style="color: gray">{{page.date | date: "%-d %B %Y"}}</em></p> </time> + <p class="p-summary" style="display: none;">{{post.excerpt | strip_html | truncatewords: 20}}</p> <span rel="author" class="h-card p-author" style="display: none;"> <p class="p-name">Noah</p> @@ -17,9 +18,12 @@ layout: default <a class="u-url" rel="me" href="https://mounderfod.online"></a> <p class="p-country-name">United Kingdom</p> </span> +<a class="u-url" style="display: none;" href="https://mounderfod.online{{page.permalink}}">https://mounderfod.online{{page.permalink}}</a> + {% for tag in page.tags %} <p class="p-category" style="display: none;">{{tag}}</p> {% endfor %} + <div class="e-content" style="color: black;">{{content}}</div> <p> |