Update
This commit is contained in:
parent
584c07ff23
commit
53e144d9a7
24 changed files with 1236 additions and 254 deletions
16
backend/templates/web/posts/{slug}.html
Normal file
16
backend/templates/web/posts/{slug}.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}{{ name }}{% endblock %}
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
|
||||
{% block breadcrumb %}
|
||||
<li><a href="/posts">posts</a></li>
|
||||
<li><a href="/posts/{{ slug }}">{{ slug }}</a></li>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<article class="wysiwyg">
|
||||
{{content|safe }}
|
||||
</article>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue