Add post date to blog posts

This commit is contained in:
Stefan Schwoegler 2017-08-31 22:35:29 -07:00
parent 3eae808620
commit 345946e3bc
3 changed files with 7 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
ietemplates/ ietemplates/
_site/* _site/*
.idea/ .idea/
*.swp
tags

View file

@ -28,7 +28,9 @@ layout: base
<div class="info-block"> <div class="info-block">
<div class="row"> <div class="row">
<div class="col"><h2>{{ page.title }}</h2> <div class="col"><h2>{{ page.title }}</h2>
<p class="author">{% t blog.author %}: {% if page.author %}{{page.author}}{% else %}{{site.author}}{% endif%}</p></div> <p class="author">{% t blog.author %}: {% if page.author %}{{page.author}}{% else %}{{site.author}}{% endif%}</p>
<p id="post-meta">{% t blog.date %} : {{ page.date }}</p>
</div>
</div> </div>
<div> <div>
{{content}} {{content}}

View file

@ -90,6 +90,7 @@ blog:
title_3: Posts title_3: Posts
tagged: Tagged under tagged: Tagged under
author: Posted by author: Posted by
date: Posted at
forum: Click here to join the discussion for this entry on the Monero Forum forum: Click here to join the discussion for this entry on the Monero Forum
tags: tags:
all: Articles by Tag all: Articles by Tag