You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
645 B

{{ define "section_content" }}
<div class="section" id="content">
{{ .Date.Format (.Site.Params.dateForm | default "Mon Jan 02, 2006") }} &#183; {{ .WordCount }} words
{{ with .Params.tags }}
<div class="tag-container">
{{ range . }}
<span class="tag">
<a href="{{ "tags/" | absURL }}{{ . | urlize }}">
{{.}}
</a>
</span>
{{ end }}
</div>
{{ end }}
<hr/>
{{ .Content }}
</div>
{{ end }}
{{ define "bottom-menu" }}
<div class="section bottom-menu">
{{ partial "bottom_menu.html" (dict "Page" . "show_back_menu_item" true) }}
</div>
{{ end }}