summaryrefslogblamecommitdiffstats
path: root/themes/problematic/layouts/_default/single.html
blob: 57895ef686448285281acb4ddef0eec3c5f84b07 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   






                                      
                                   
                                            
 
              













                                                                         
         
{{ define "main" }}

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

<h2 class="title">{{ .Title }}</h2>
{{ .Date.Format "Monday, 2 January 2006"  }}

{{ .Content }}

  {{ if .Params.tags }}
  <div style="background-color: rgb(240, 240, 240);">
    This post 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 post is untagged. 
    </div>
  {{ end }}
  </div>

{{ end }}