Move pelican site to obsolete-pelican subdirectory. Copy site-opengamestudio en/ru and index here

This commit is contained in:
2019-04-16 12:08:01 +03:00
parent cee5f32abc
commit 1153ee861b
524 changed files with 19708 additions and 533 deletions

View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block content %}
<h3>Archives</h3>
<table class="table-archive">
<tbody>
{% for article in dates %}
<tr>
<td>{{ article.locale_date }}</td>
<td><a href='{{ article.url }}'>{{ article.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}