mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2026-04-12 03:38:30 +00:00
13 lines
227 B
HTML
13 lines
227 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block layout_class %}no-sidebar{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="content portal">
|
|
<article>
|
|
<h1>{{ page.title }}</h1>
|
|
{{ content | safe }}
|
|
</article>
|
|
</main>
|
|
{% endblock %}
|