diff options
author | uvok cheetah | 2025-06-22 14:28:33 +0200 |
---|---|---|
committer | uvok cheetah | 2025-06-22 14:28:33 +0200 |
commit | c3e34ca596f0032e707d8563c33bbd7f736ed7ca (patch) | |
tree | d1189aac4b9339c106bebc5a0d647459c965a98b /_layouts.gemini/post.html | |
parent | baa5612f50704950d483af06bb92c9c8dd8b8ef8 (diff) |
Prepare Gemini postings
Diffstat (limited to '_layouts.gemini/post.html')
-rw-r--r-- | _layouts.gemini/post.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/_layouts.gemini/post.html b/_layouts.gemini/post.html new file mode 100644 index 0000000..9ce3141 --- /dev/null +++ b/_layouts.gemini/post.html @@ -0,0 +1,23 @@ +--- +layout: default +--- + <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1> + <p class="post-meta"> + <p> + {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} + {%- assign date_format = "%A, %e. %B %Y, %k:%M" -%} + Published: {{ page.date | date: date_format }} + + {%- if page.last_modified_at -%} + - + Updated: {{ page.last_modified_at | date: date_format }} + {%- endif -%} + </p> + + {%- if page.author -%} + - <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span> + {%- endif -%} + </p> + <div class="post-content e-content" itemprop="articleBody"> + {{ content }} + </div> |