Make project REUSE compliant
initial commit a lot more stuff Make project REUSE compliant start working on implementing audio
This commit is contained in:
commit
7bc11e49a4
136 changed files with 3218 additions and 0 deletions
16
templates/post.html
Normal file
16
templates/post.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{% extends "base.html" %}
|
||||
{% block style %}
|
||||
<link rel="stylesheet" href="/post/page.css"/>
|
||||
{% endblock style %}
|
||||
{% block title %}
|
||||
{{ page.title }}
|
||||
{% endblock title %}
|
||||
{% block content %}
|
||||
<h1 id="title">
|
||||
{{ page.title }}
|
||||
</h1>
|
||||
<p id="subtitle">{{ page.date }}</p>
|
||||
<div id="page_content">
|
||||
{{ page.content | safe }}
|
||||
</div>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue