A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
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.
13 lines
257 B
13 lines
257 B
{% 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 %}
|