add link links without actually enabling them

This commit is contained in:
2023-08-01 00:26:09 +09:30
parent 10f97599cf
commit 4d27c1c581
3 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,16 @@
<div class="paragraph-deparagrapher">
<h4><a href="/sitemap/">sitemap</a></h4>
<h4><a href="/journal_html/">journal.html</a>
<h4>thoughts and feelings</h4>
{% for post in collections['blog'] | reverse | limit(5) %}
- {{ post.page.date.toLocaleDateString("en-UK") }} // <a href="{{post.filePathStem}}">{{ post.data.title }}</a>
{% endfor %}
<span> - <a href="/blog/">...and da restt ...</a></span>
<h4>lists of things</h4>
{% for post in collections['blog'] | reverse | limit(5) %}
- {{ post.page.date.toLocaleDateString("en-UK") }} // <a href="{{post.filePathStem}}">{{ post.data.title }}</a>
{% endfor %}
<span> - <a href="/blog/">older lists....</a></span>
<h4><a href="/art/my-art-2023/">my art</a></h4>
<h4><a href="/misc/">miscellania</a></h4>
</div>

View File

@ -26,7 +26,6 @@ html {
scroll-behavior: smooth;
}
/* Format headers */
h1 {
@ -382,4 +381,8 @@ footer {
top: 0;
top: 50%;
transform: translateY(-50%);
}
.paragraph-deparagrapher p {
margin: 0;
}