clap/site/templates/page.html
Emmanuel Leblond 15b9ff1a24
Add placeholders for Cookbook and Cheatsheet pages in the website (#2732)
* 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>
2021-08-31 11:13:21 +00:00

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 %}