keep archive per year, don't call it archive

This commit is contained in:
j 2023-08-23 14:44:37 +02:00
commit cf2efd7fb3
8 changed files with 72 additions and 17 deletions

View file

@ -50,12 +50,14 @@
{% endblock %}
{% block end %}
<script>
var comments = {{ comments }};
var user = {{ user }};
var item = {
id: {{ item.id }},
title: '{{ item.title|escapejs }}'
title: '{{ item.title|escapejs }}',
next: '{{ next }}',
previous: '{{ previous }}',
};
var comments = JSON.parse("{{ comments|escapejs }}");
</script>
{% compress js file m %}
<script src="/static/js/utils.js"></script>