mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 23:02:31 +00:00
16 lines
317 B
HTML
16 lines
317 B
HTML
|
{% extends "shared/base.html" %}
|
||
|
|
||
|
{% block title %}{{ page.title }}{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% include "shared/header.html" %}
|
||
|
|
||
|
<main id="content" class="maxview">
|
||
|
<article>
|
||
|
<h1 class="post-title">{{ page.title }}</h1>
|
||
|
|
||
|
{{ page.content | safe }}
|
||
|
</article>
|
||
|
</main>
|
||
|
{% endblock content %}
|