summaryrefslogtreecommitdiffstats
path: root/layouts/art/single.html
blob: ac6f351bbc4381a71634e0c34473b7686991495e (plain) (blame)
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
{{ define "main" }}

<style type="text/css" media="screen">
  li {
    margin-bottom: 1.2em;
  }
</style>

<h2 class="title">{{ .Title }}</h2>

{{ .Content }}

  {{ if .Params.tags }}
  <div style="background-color: rgb(240, 240, 240);">
    This page is tagged with: 
        {{ range .Params.tags }}
        <a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
        {{ end }}
  {{ else }}
    <div style="background-color: rgb(240, 240, 240); margin-top: 20px;">
      This page is untagged. 
    </div>
  {{ end }}
  </div>

{{ end }}