1 2 3 4 5 pre { line-height: 125%; } td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } span.linenos.special { color: #000000; back{% extends "base.html" %} {%block title %}{{ SITENAME }} - Archives{%endblock%} {% block content %} <h1 class="page_title">Archives</h1> <table id="archives"> <tbody> {% for article in dates %} <tr> <td>{{ article.date.date() }}</td> <td><a href='{{ article.url }}'>{{ article.title }}</a></td> </tr> {% endfor %} </tbody> </table> {% endblock %}
{% extends "base.html" %} {%block title %}{{ SITENAME }} - Archives{%endblock%} {% block content %} <h1 class="page_title">Archives</h1> <table id="archives"> <tbody> {% for article in dates %} <tr> <td>{{ article.date.date() }}</td> <td><a href='{{ article.url }}'>{{ article.title }}</a></td> </tr> {% endfor %} </tbody> </table> {% endblock %}