You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends "layout.html" %}
- {% block title %}Blog{% endblock %}
- {% block content %}
-
- {% if url_category %}
- <h1>Category: {{ url_category }}</h1>
- {% else %}
- <h1>My Blog</h1>
- {% endif %}
-
- {{ include_page("blog.partial_index") | safe }}
-
- {% endblock %}
|