| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html lang="{{ .Site.Language.Lang }}"> | 
					
						
							|  |  |  | {{ $Title := "Blog IBIS" }} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {{ partial "head.html" . }} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-14 18:03:13 +02:00
										 |  |  | <body hx-boost="true" lang="{{ .Site.Language.Lang }}"> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |   {{ partial "nav.html" . }} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <header class="blog"> | 
					
						
							|  |  |  |     <div class="container"> | 
					
						
							|  |  |  |       <div class="row"> | 
					
						
							| 
									
										
										
										
											2025-05-14 18:03:13 +02:00
										 |  |  |         <div class="col m9"> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |           <h2><a href="{{ "blog/spot"  | relLangURL }}">IBIS Blog</a></h2> | 
					
						
							|  |  |  |           {{ partial "widgets/categoriesibis.html" . }} | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |       </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |   </header> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <div id="content"> | 
					
						
							|  |  |  |     <div class="container"> | 
					
						
							|  |  |  |         <div class="row"> | 
					
						
							| 
									
										
										
										
											2025-05-14 18:03:13 +02:00
										 |  |  |             <div class="col l9 m9"> | 
					
						
							|  |  |  |                 <section class="col s12"> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |                   <div class="list-group"> | 
					
						
							|  |  |  |                     {{ $paginator := .Paginate ((where .Pages "Type" "blogibis").ByParam "lastmod").Reverse}} | 
					
						
							|  |  |  |                     {{ range $paginator.Pages }} | 
					
						
							|  |  |  |                         <div class="row blog-article-item-list"> | 
					
						
							|  |  |  |                           <h4><a href="{{ .Permalink }}">{{.Title}}</a></h4> | 
					
						
							| 
									
										
										
										
											2025-05-14 18:03:13 +02:00
										 |  |  |                           <div class="col l4 col m4 col s12"> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |                             {{ if isset .Params "images"}} | 
					
						
							|  |  |  |                             {{ if (fileExists (printf "assets/%s" (index .Params.images 0))) -}} | 
					
						
							|  |  |  |                             {{ $mainimage := resources.Get (index .Params.images 0) }} | 
					
						
							|  |  |  |                               <p class="text-center"><img class="img-thumbnail img-fluid" src="{{ $mainimage.RelPermalink }}" | 
					
						
							|  |  |  |                                 width="300"> | 
					
						
							|  |  |  |                             </p> | 
					
						
							|  |  |  |                             {{ end }} | 
					
						
							|  |  |  |                             {{ end }} | 
					
						
							|  |  |  |                            | 
					
						
							|  |  |  |                           </div> | 
					
						
							| 
									
										
										
										
											2025-05-14 18:03:13 +02:00
										 |  |  |                           <div class="col l8 col m8 col s12"> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |                           <p class="blog-article-introduction"> | 
					
						
							| 
									
										
										
										
											2025-01-06 17:24:48 +01:00
										 |  |  |                             {{ .Summary | plainify}} | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |                             <a href="{{ .Permalink }}">{{ i18n "read_more" }}</a> | 
					
						
							|  |  |  |                           </p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           {{ partial "partials/widgets/ibiscattags.html" . }} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                           </div>    | 
					
						
							|  |  |  |                         </div> | 
					
						
							|  |  |  |                     {{ end }} | 
					
						
							|  |  |  |                       </div> | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |                     {{ partial "partials/pagination.html" (dict "page" . "format" "default" "align" "center") }} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 </section> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |             {{ partial "widgets/ibissidebar.html" . }} | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |   </div> | 
					
						
							|  |  |  |   <!-- /#content --> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {{ partial "footer.html" . }} | 
					
						
							| 
									
										
										
										
											2025-05-14 18:03:13 +02:00
										 |  |  |   {{ partial "scripts.html" }} | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |