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

page.html (534B)


      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             Published by <a href="{{ config.base_url }}">{{ config.title }}</a> on
      8             <time datetime="{{ page.date }}">{{ page.date | date(format="%B %d, %Y") }}</time>
      9             <br/>
     10             <a href="..">&lt; Back</a>
     11           </small>
     12         </section>
     13         {{ page.content | safe }}
     14       </article>
     15 {% endblock content %}