apps/posts/templates/page.html 541 B raw
1
{{define "page.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}{{.Page.Title}} — {{.BlogTitle}}{{end}}
3
{{define "meta"}}
4
  {{if .OGImageURL}}
5
    <meta property="og:image" content="{{.OGImageURL}}">
6
  {{else}}
7
    <meta property="og:image" content="{{.SiteURL}}/static/og.png">
8
  {{end}}
9
  <meta property="og:url" content="{{.SiteURL}}/{{.Page.Slug}}">
10
{{end}}
11
{{define "content"}}
12
  <div class="page-header">
13
    <h1>{{.Page.Title}}</h1>
14
  </div>
15
  <article class="markdown-body">
16
    {{.RenderedContent}}
17
  </article>
18
{{end}}