summaryrefslogblamecommitdiffstats
path: root/layouts/stream/list.html
blob: fd87753884ed4f46096372ba4147b661f7f24732 (plain) (tree)
1
2
3
4
5
6
7
8
                   
 

              

                                                                                                            
 
                












                                                                         

                                                                                                                                 
                   
           

         
{{ define "main" }}

{{ .Content }}

{{ range where site.RegularPages "Section" "stream" }}
<h3 id="{{ .Date.Format "Monday, 2 January 2006"| urlize}}">{{ .Date.Format "Monday, 2 January 2006" }}</h3>

  {{ .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>
  <span><small><a href="{{ "stream" | absURL }}/#{{ .Date.Format "Monday 2 January 2006" | urlize}}">permalink</a></small></span>
    
  <hr class="new1">
  {{ end }}

{{ end }}