mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
15b9ff1a24
* Add placeholders for Cookbook and Cheatsheet pages in the website * Update site/content/cheatsheet.md Co-authored-by: Pavan Kumar Sunkara <pavan.sss1991@gmail.com>
15 lines
317 B
HTML
15 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 %}
|