Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion theme/templates/category.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends '_article_list.html' %}
{% import '_lib.html' as lib with context %}

{% block title %}{{ category.name }} / {{ SITENAME }}{% endblock %}
{% block title %}{{ category.name }}{% if articles_page.number != 1 %} / page {{ articles_page.number }}{% endif %} / {{ SITENAME }}{% endblock %}

{% block content %}
<h1>
Expand Down
2 changes: 1 addition & 1 deletion theme/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends '_article_list.html' %}
{% block title %}{{ SITENAME }}{% endblock %}
{% block title %}{{ SITENAME }}{% if articles_page.number != 1 %} / page {{ articles_page.number }}{% endif %}{% endblock %}

{% block content %}
<h1>
Expand Down
2 changes: 1 addition & 1 deletion theme/templates/tag.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends '_article_list.html' %}

{% block title %}🔖 {{ tag.name }} / {{ SITENAME }}{% endblock %}
{% block title %}🔖 {{ tag.name }}{% if articles_page.number != 1 %} / page {{ articles_page.number }}{% endif %} / {{ SITENAME }}{% endblock %}

{% block content %}
<h1>Tagged: {{ tag.name }}</h1>
Expand Down