8 lines
188 B
HTML
8 lines
188 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}ily {{ page.components | join(sep="/") }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content | safe }}
|
|
{% endblock %}
|