forked from github/pelican
Add a way to output pages as well.
This commit is contained in:
parent
259eb1571d
commit
340ddf4aa8
5 changed files with 109 additions and 45 deletions
8
pelican/themes/notmyidea/templates/page.html
Normal file
8
pelican/themes/notmyidea/templates/page.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<section id="content" class="body">
|
||||
<h2>{{ page.title }}</h2>
|
||||
{{ page.content }}
|
||||
</section>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue