diff options
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> |