24 lines
		
	
	
		
			613 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			613 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{{ partial "header.html" . }}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<div class="header" style="background-color: whitesmoke">
							 | 
						||
| 
								 | 
							
								  <h1>{{ .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 class="micro-block"><b>   </b></div>
							 | 
						||
| 
								 | 
							
								    <div class="big-block" style="vertical-align: middle"><b>         Title</b></div>
							 | 
						||
| 
								 | 
							
								  </div>
							 | 
						||
| 
								 | 
							
								  <ul>
							 | 
						||
| 
								 | 
							
								  {{ range .Pages.ByParam "date" }}
							 | 
						||
| 
								 | 
							
								    {{ .Render "li" }}
							 | 
						||
| 
								 | 
							
								  {{ end }}
							 | 
						||
| 
								 | 
							
								  </ul>
							 | 
						||
| 
								 | 
							
								  <hr/>
							 | 
						||
| 
								 | 
							
								  {{ end }}
							 | 
						||
| 
								 | 
							
								</div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{{ partial "footer.html" . }}
							 |