diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/templates/layouts/minimal.html | 10 | ||||
-rw-r--r-- | src/main/resources/templates/views/post.html | 5 |
2 files changed, 4 insertions, 11 deletions
diff --git a/src/main/resources/templates/layouts/minimal.html b/src/main/resources/templates/layouts/minimal.html deleted file mode 100644 index 15924521..00000000 --- a/src/main/resources/templates/layouts/minimal.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "layouts/content" %} -{% block body %} -<div id="wrapper"> - <section id="minimal_content"> - {% block content %} - {% endblock %} - </section> -</div> -{% include "views/partial/footer" %} -{% endblock %}
\ No newline at end of file diff --git a/src/main/resources/templates/views/post.html b/src/main/resources/templates/views/post.html index 3753b36c..aed4f316 100644 --- a/src/main/resources/templates/views/post.html +++ b/src/main/resources/templates/views/post.html @@ -1,4 +1,4 @@ -{% extends "layouts/minimal" %} +{% extends "layouts/default" %} {% import "views/macros/tags" %} {% block content %} <article> @@ -16,4 +16,7 @@ </article> <p style="text-align: left"><b>Теги:</b></p> {{ tags(visitor.name, tags) }} +{% endblock %} +{% block "column" %} +{% include "views/partial/usercolumn" %} {% endblock %}
\ No newline at end of file |