From 7e49db5ddefe8c515b5f3931a5c701efaac33d91 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Fri, 16 Dec 2022 17:45:03 -0600 Subject: change structure for new pyssg version --- plt/art/page.html | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 plt/art/page.html (limited to 'plt/art/page.html') diff --git a/plt/art/page.html b/plt/art/page.html new file mode 100644 index 0000000..837422e --- /dev/null +++ b/plt/art/page.html @@ -0,0 +1,76 @@ +{%extends "base.html"%} + +{%block html_lang%} +{{config['lang']}} +{%endblock html_lang%} + +{%block head_title%} +{{page.title}} -- {{config['title']}} +{%endblock head_title%} + +{%block head_description%} +{%if page.summary is not none%} + +{%else%} + +{%endif%} +{%endblock head_description%} + +{%block head_rss%} + +{%endblock head_rss%} + +{%block head_og%} + + + + +{%if page.summary is not none%} + +{%else%} + +{%endif%} + + +{%endblock head_og%} + +{%block body_header%} +{%import 'body/header.html' as body_header%} +{{body_header.print(config)}} +{%endblock body_header%} + +{%block body_content%} +

{{page.title}}

+ + + {%if page.summary is not none%} + {{page.summary}} + {%else%} + + {%endif%} + + + {{page.content}} + + {%import "page_nav.html" as page_nav%} + {{page_nav.print(page, config, "art-nav")}} + +
+
+

By {{', '.join(page.author)}}

+

Posted: {{page.cdate}}

+ {%import "tag_list.html" as tag_list%} + {{tag_list.print(page.tags, "art-tags")}} +
+{%endblock body_content%} + +{%block body_footer%} +{%import 'body/footer.html' as body_footer%} +{{body_footer.contact(config)}} +{{body_footer.donate(config)}} +{{body_footer.rss(config)}} +
+{{body_footer.created_with()}} +
+{{body_footer.copyright()}} +{%endblock body_footer%} \ No newline at end of file -- cgit v1.2.3-70-g09d2