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

              
                                                                          
                                                                                                            
 
                












                                                                         

                                                                                                                                 
                   
           

         
{{ define "main" }}

{{ .Content }}

{{ range (.Paginate (where site.RegularPages "Section" "stream")).Pages }}
<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 }}