More experimenting with post list format
All checks were successful
/ weblog.lol (push) Successful in 10s

This commit is contained in:
Gordon Pedersen 2024-05-13 15:48:10 +10:00
parent d73d49a3f0
commit 6f77ec11e6
3 changed files with 20 additions and 26 deletions

View file

@ -63,8 +63,8 @@ tags: Blog,
]>>
Titleless title length: 15 words
// Truncation appendix: […]
Titleless title length: 10 words
Truncation appendix: […]
// Title format: <h1><a href="$permalink">$title</a></h1>
Multiple posts count: 10
@ -96,21 +96,10 @@ Recent posts format: <<[
;; ---------------------
Post list format: <<[
[post:begin]<article>
<aside class="post-info">
<a href="$location"><i class="fa-solid fa-clock"></i> <time class="dt-published" datetime="$date">$date</time></a>
</aside>
<i data-emoji="$emoji"></i>
$body
<aside class="post-info">
<a class="status_url" href="$status_url" target="_blank"><i class="omg-icon omg-prami"></i> via status.lol</a>
<a class="external_url" href="$external_url" target="_blank"><i class="omg-icon omg-fediverse"></i> Interact on the Fediverse</a>
</aside>
<aside class="post-tags">
$tags
</aside>
</article>[post:end]]
>>
<article>
<ul class="fa-ul">
[post:begin]<li><span class="fa-li"><i class="fa-solid fa-globe"></i></span><a href="$location">$title</a></li>[post:end]
</ul></article>]>>
;; Page list {page-list}
@ -147,19 +136,17 @@ Tags format: <<[
[tag:begin]<a class="tag" href="$tag_location">$tag</a>[tag:end]
]>>
Tag page format: <<[
<h2>Posts tagged with “$tag”</h2>
<ul>
[tag:begin]<li><a href="$location">$title</a></li>[tag:end]
<h2>Posts tagged with <span class="tag">$tag</tag></h2>
<ul class="fa-ul">
[tag:begin]<li><span class="fa-li"><i class="fa-solid fa-globe"></i></span><a href="$location">$title</a></li>[tag:end]
</ul>
]>>
Tag listing path: /tags
// Tag listing template: Tag Listing Template
// Note: tag listing order can be "alphabetical", "ascending", or "descending" where alphabetical sorts by the tag name and ascending/descending sorts by the count of entries with that tag
Tag listing order: alphabetical
Tag listing order: descending
Tag listing format: <<[
<h2>Tags</h2>
<ul>
[tag:begin]<li><a href="$location">$tag</a> ($count)</li>[tag:end]
</ul>
<h1>Tags</h1>
[tag:begin]<a class="tag" href="$location">$tag ($count)</a>[tag:end]
]>>

View file

@ -79,6 +79,10 @@ main>nav,
box-shadow: var(--shadow);
}
main.page {
display: block;
}
.post-info {
margin-top: -1rem;
margin-right: -1rem;
@ -307,6 +311,8 @@ footer p {
border-radius: .5em;
text-decoration: none;
display: inline-block;
font-family: var(--font-code);
font-weight: var(--font-code-weight);
}
.tag:hover {
@ -469,7 +475,7 @@ main.home{
box-shadow: 0 0 1em 1px var(--primary-muted), 0 0 .5em 1px var(--white-glow);
}
#profile-items>ul {
ul.fa-ul {
display: flex;
flex-direction: column;
gap: 0.5em;

View file

@ -2,6 +2,7 @@
type: page
location: /blog
title: Post List
template: Home
---
{post-list}