mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-30 17:53:28 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1015 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1015 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
|     <h1>
 | |
|         {{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
 | |
|         {{ .Title | markdownify }}
 | |
|         <span class="rss-link">
 | |
|             {{ with .OutputFormats.Get "rss" }}
 | |
|             <a href="{{ .Permalink }}" target="_blank" rel="noopener">{{ partial "icon.html" "rss-feed" }}</a>
 | |
|             {{ end }}
 | |
|         </span>
 | |
|     </h1>
 | |
| 
 | |
|     <div class="list-page-content">
 | |
|         {{ with .Sections }}
 | |
|             <div class="sections">
 | |
|                 {{ range . }}
 | |
|                     {{ .Render "summary/section" }}
 | |
|                 {{ end }}
 | |
|             </div>
 | |
|         {{ end }}
 | |
| 
 | |
|         <div class="page-list">
 | |
|             <ul>
 | |
|                 {{ range .Paginator.Pages }}
 | |
|                     <li>{{ .Render "summary/post" }}</li>
 | |
|                 {{ else }}
 | |
|                     <div>
 | |
|                         {{ i18n "no_posts" }}
 | |
|                     </div>
 | |
|                 {{ end }}
 | |
|             </ul>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     {{ partial "pagination.html" . }}
 | |
| {{ end }}
 |