mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
15 lines
326 B
HTML
15 lines
326 B
HTML
{% extends "shared/base.html" %}
|
|
|
|
{% block title %}{{ section.title }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
{% include "shared/header.html" %}
|
|
|
|
<main id="content" class="maxview">
|
|
<article>
|
|
<h1 class="post-title">{{ section.title }}</h1>
|
|
|
|
{{ section.content | safe }}
|
|
</article>
|
|
</main>
|
|
{% endblock content %}
|