22 lines
		
	
	
		
			470 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			470 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ partial "header.html" . }}
 | 
						|
 | 
						|
<div class="header" style="background-color: whitesmoke">
 | 
						|
  <h1 style="color: gray(35)">{{ .Title }}</h1>
 | 
						|
</div>
 | 
						|
<div class="content">
 | 
						|
 | 
						|
  {{ range .Data.Pages.GroupByParam "series"}}
 | 
						|
  <center><h2 id="#{{ .Key }}"><a href="#{{ .Key }}">#</a>{{ .Key }}</h2></center>
 | 
						|
  <div class="row">
 | 
						|
  </div>
 | 
						|
  <ul>
 | 
						|
  {{ range .Pages.ByParam "date" }}
 | 
						|
    {{ .Render "li" }}
 | 
						|
  {{ end }}
 | 
						|
  </ul>
 | 
						|
  <hr/>
 | 
						|
  {{ end }}
 | 
						|
</div>
 | 
						|
 | 
						|
{{ partial "footer.html" . }}
 |