43 lines
		
	
	
		
			No EOL
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			No EOL
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ .Site.Language.Lang }}">
 | |
| 
 | |
| {{ partial "head.html" . }}
 | |
| 
 | |
| <body hx-boost="true" lang="{{ .Site.Language.Lang }}">
 | |
|   {{ partial "nav.html" . }}
 | |
| 
 | |
|   <header class="blog">
 | |
|     <div class="container">
 | |
|       <div class="row">
 | |
|         <div class="col s12 m9 l9">
 | |
|           <h2><a href="{{ "blog/spot"  | relLangURL }}">SPOT Blog</a></h2>
 | |
|           {{ partial "widgets/categoriesspot.html" . }}
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </header>
 | |
| 
 | |
|   <div id="page-content">
 | |
|     <div class="container">
 | |
|         <div class="row">
 | |
|             <div class="col s12 m9 l9">
 | |
|                 <section>
 | |
|                   <div class="list-group">
 | |
|                     {{ $paginator := .Paginate ((where .Pages "Type" "blogspot").ByParam "LastmodDate")}}
 | |
|                     {{ range $paginator.Pages }}
 | |
|                       {{ partial "partials/article-item.html" (dict "article" . "tags" "spotcattags") }}
 | |
|                     {{ end }}
 | |
|                       </div>
 | |
|         
 | |
|                     {{ partial "partials/pagination.html" (dict "page" . "format" "default" "align" "center") }}
 | |
| 
 | |
|                 </section>
 | |
|             </div>
 | |
|             {{ partial "partials/widgets/spotsidebar.html" . }}
 | |
|         </div>
 | |
|     </div>
 | |
|   </div>
 | |
|   <!-- /#content -->
 | |
|   {{ partial "footer.html" . }}
 | |
| </body>
 | |
| </html> | 
