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/about.html


      1 {% extends "base.html" %}
      2 
      3 
      4 {% block title %}{{ SITENAME }} / {{ page.title }}{% endblock %}
      5 
      6 
      7 {% block header %}
      8 <a href=/>mcol.xyz</a> /
      9 <a href=/{{ output_file }}>{{ page.title }}</a>
     10 {% endblock %}
     11 
     12 
     13 {% block content %}
     14 {{ ABOUT }}
     15 <hr>
     16 <p><h2>me on the WWW</h2></p>
     17 <table>
     18 {% for name, url, msg in LINKS %}
     19 <tr><td><a href="{{ url }}">{{ name }}</a></td><td>{{ msg }}</td></tr>
     20 {% endfor %}
     21 </table>
     22 <p></p>
     23 <hr>
     24 <p>{{ page.content }}</p>
     25 
     26 <table>
     27 	{% for blog in BLOGROLL %}
     28 	<tr><td>{{ blog[0] }} at <a href="{{ blog[1] }}">{{ blog[2] }}</a></td></tr>
     29 	{% endfor %}
     30 </table>
     31 
     32 <footer><hr>- mcol.xyz -</footer>
     33 {% endblock %}
     34