Compare commits

...

4 Commits

2 changed files with 9 additions and 3 deletions

View File

@ -639,8 +639,9 @@ textarea {
margin:0 margin:0
} }
.post-content figcaption { .post-content figcaption {
margin:1.0em 0 0; margin:1.0em auto;
font-size:80%; width: 80%;
font-size:70%;
font-style: italic; font-style: italic;
line-height:1.6em; line-height:1.6em;
text-align:center; text-align:center;

View File

@ -14,7 +14,12 @@
{{#post}} {{#post}}
{{! Everything below outputs content of the the post which has been published }} {{! Everything below outputs content of the the post which has been published }}
<span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY' locale="fr-fr"}}</time> {{#if tags}}dans {{tags separator=" | "}}{{/if}}</span> <span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY' locale="fr-fr"}}</time>
{{#if tags}}dans {{tags separator=" | "}}{{/if}}<br />
{{#if updated_at}}
<time datetime="{{date format="YYYY-MM-DD"}}">&nbsp;&nbsp;➡ Mise à jour {{date updated_at format='DD MMM YYYY' locale="fr-fr"}}</time>
{{/if}}
</span>
<h2 class="post-title">{{{title}}}</h2> <h2 class="post-title">{{{title}}}</h2>