A mini theme for the pelican static site generator
git clone https://github.com/m-col/mini-theme
Files | Refs | Readme

-rw-r--r-- templates/page.html


      1 {% extends "base.html" %}
      2 
      3 
      4 {% block title %}{{ SITENAME }} / {{ page.title }}{%endblock%}
      5 
      6 
      7 {% block header %}
      8 <a href=/{{ output_file }}>{{ page.title }}</a>
      9 {% endblock %}
     10 
     11 
     12 {% block content %}
     13 {{ page.content }}
     14 <footer><hr>- mcol.xyz -</footer>
     15 {% endblock %}
     16