mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-31 01:53:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main" }}
 | |
| 
 | |
| <h1>
 | |
|     {{ if eq .Data.Singular "tag" }}
 | |
|         {{ partial "icon.html" "tag" }}
 | |
|     {{ else if eq .Data.Singular "author" }}
 | |
|         {{ partial "icon.html" "user-circle" }}
 | |
|     {{ else if eq .Data.Singular "series" }}
 | |
|         {{ partial "icon.html" "files" }}
 | |
|     {{ else }}
 | |
|         {{ partial "icon.html" "filter" }}
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ .Title }}
 | |
| 
 | |
|     {{ if eq .Kind "term" }}
 | |
|     <span class="rss-link">
 | |
|         {{ with .OutputFormats.Get "rss" }}
 | |
|         <a href="{{ .Permalink }}" target="_blank" rel="noopener">{{ partial "icon.html" "rss-feed" }}</a>
 | |
|         {{ end }}
 | |
|     </span>
 | |
|     {{ end }}
 | |
| </h1>
 | |
| 
 | |
| {{ if eq .Kind "taxonomy" }}
 | |
| 
 | |
| {{ if eq .Data.Singular "series" }}
 | |
| <div class="series-taxonomy">
 | |
|     <ul>
 | |
|         {{ range .Pages }}
 | |
|         <li>{{ .Render "series-summary" }}</li>
 | |
|         {{ end }}
 | |
|     </ul>
 | |
| </div>
 | |
| {{ else }}
 | |
| <div class="taxonomy">
 | |
|     <ul>
 | |
|         {{ range .Pages }}
 | |
|         <li>
 | |
|             <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
 | |
|         </li>
 | |
|         {{ end }}
 | |
|     </ul>
 | |
| </div>
 | |
| {{ end }}
 | |
| 
 | |
| {{ else }}
 | |
| 
 | |
| 
 | |
| {{ with .Description }}
 | |
| <div class="term-description">
 | |
|     <p>{{ . | markdownify }}</p>
 | |
| </div>
 | |
| {{ end }}
 | |
| 
 | |
| {{ $items := .Paginator.Pages }}
 | |
| {{ if eq .Data.Singular "series" }}
 | |
| {{ $items = .Paginator.Pages.Reverse }}
 | |
| {{ end }}
 | |
| <div class="page-list">
 | |
|     <ul>
 | |
|         {{ range $items }}
 | |
|         <li>{{ .Render "summary" }}</li>
 | |
|         {{ else }}
 | |
|         <div>
 | |
|             {{ i18n "no_posts" }}
 | |
|         </div>
 | |
|         {{ end }}
 | |
|     </ul>
 | |
| </div>
 | |
| 
 | |
| 
 | |
| {{ if gt .Paginator.TotalPages 1 }}
 | |
| <div class="pagination">
 | |
|     {{ template "_internal/pagination.html" . }}
 | |
| </div>
 | |
| {{ end }}
 | |
| 
 | |
| {{ end }}
 | |
| 
 | |
| {{ end }}
 |