summaryrefslogtreecommitdiff
path: root/plt/blog/page.html
blob: 71b4cfe5d413356fd13c6a606f923b5064c40e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{%extends "base.html"%}

{%block html_lang%}
{{config['lang']}}
{%endblock html_lang%}

{%block head_title%}
<title>{{page.title}} -- {{config['title']}}</title>
{%endblock head_title%}

{%block head_description%}
{%if page.summary is not none%}
  <meta name="description" content="{{page.summary}}"/>
{%else%}
  <meta name="description" content="{{config['description']}}"/>
{%endif%}
{%endblock head_description%}

{%block head_rss%}
<link rel="alternate" type="application/rss+xml" href="{{config['url']['main']}}/rss.xml" title="{{config['title']}} RSS">
{%endblock head_rss%}

{%block head_extra%}
{%import "highlightjs.html" as hljs%}
{{hljs.print()}}
{%endblock head_extra%}

{%block gdscript_hl%}
<!-- Specific to GDScript -->
<script type="text/javascript" src="hl/languages/gdscript.min.js"></script>
{%endblock gdscript_hl%}

{%block head_og%}
  <meta property="og:title" content="{{page.title}} -- {{config['title']}}"/>
  <meta property="og:type" content="article"/>
  <meta property="og:url" content="{{config['url']['main']}}/{{page.name}}"/>
  <meta property="og:image" content="{{config['url']['static']}}/{{config['url']['default_image']}}"/>
{%if page.summary is not none%}
  <meta property="og:description" content="{{page.summary}}"/>
{%else%}
  <meta property="og:description" content="{{config['description']}}"/>
{%endif%}
  <meta property="og:locale" content="{{config['lang']}}"/>
  <meta property="og:site_name" content="{{config['title']}}"/>
{%endblock head_og%}

{%block body_header%}
{%import 'body/header.html' as body_header%}
{{body_header.print(config)}}
{%endblock body_header%}

{%block body_content%}
  <h1>{{page.title}}</h1>

  {{page.content}}

  {%import "page_nav.html" as page_nav%}
  {{page_nav.print(page, config, "page-nav")}}

  <hr>
  <div class="article-info">
    <p>By {{', '.join(page.author)}}</p>
    <p>Created: {{page.cdate}}</p>
    {%if page.mdate is not none%}
      <p>Modified: {{page.mdate}}</p>
    {%endif%}
    {%import "tag_list.html" as tag_list%}
    {{tag_list.print(page.tags, "article-tags")}}
  </div>
{%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)}}
<br>
{{body_footer.created_with()}}
<br>
{{body_footer.copyright()}}
{%endblock body_footer%}