Files
kennethreitz.org/templates/post.html
T
2024-08-15 18:24:40 -04:00

16 lines
355 B
HTML

{% extends "base.html" %} {% block title %}{{ title }}{% endblock %}
{% block nav %}
<nav class="breadcrumbs">
{% for crumb in breadcrumbs %}
/ <a href="/{{ crumb.path.name }}">{{ crumb.path.name }}</a>
{% endfor %}
/ {{ path.name }}
</nav>
{% endblock %}
{% block content %}
<h1>{{ title }}</h1>
{{ content | safe }}
{% endblock %}