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/screenshots.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 {% for img in SCREENSHOTS %}
     15 {% if loop.index != 1 %}
     16 <hr>
     17 {% endif %}
     18 <table>
     19 	<tr><td><a rel="nix" href="/screenshots/{{ img }}"><img loading="lazy" class="maim" src="/screenshots/{{ img }}"/></a></td></tr>
     20 </table>
     21 {% endfor %}
     22 
     23 <footer><hr>- mcol.xyz -</footer>
     24 {% endblock %}
     25