figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

article.html (844B)


      1 {% extends "index.html" %}
      2 {% block content %}
      3       <article>
      4         <section id="article-header">
      5           <h1><a href="{{ current_url }}">{{ page.title }}</a></h1>
      6           <small>
      7             {% if page.extra is containing("book") %}
      8             <i>{{ page.extra.book }}</i> by {{ page.extra.author }}. <br/>
      9             Finished on {{ page.extra.finished | date(format="%B %d, %Y") }}. <br/>
     10             Rating: {{ page.extra.rating }} <br/>
     11             {% else %}
     12             Published by <a href="{{ config.base_url }}">{{ config.title }}</a> on
     13             <time datetime="{{ page.date }}">{{ page.date | date(format="%B %d, %Y") }}</time>
     14             <br/>
     15             {% endif %}
     16             <a href="..">&lt; Back</a>
     17           </small>
     18         </section>
     19         {{ page.content | safe }}
     20       </article>
     21 {% endblock content %}