mirror of
				https://github.com/balkian/balkian.github.com.git
				synced 2025-10-30 23:28:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="article-details">
 | |
|     {{ if .Params.categories }}
 | |
|     <header class="article-category">
 | |
|         {{ range (.GetTerms "categories") }}
 | |
|             <a href="{{ .RelPermalink }}" {{ with .Params.style }}style="background-color: {{ .background }}; color: {{ .color }};"{{ end }}>
 | |
|                 {{ .LinkTitle }}
 | |
|             </a>
 | |
|         {{ end }}
 | |
|     </header>
 | |
|     {{ end }}
 | |
| 
 | |
|     <div class="article-title-wrapper">
 | |
|         <h2 class="article-title">
 | |
|             <a href="{{ .RelPermalink }}">
 | |
|                 {{- .Title | markdownify -}}
 | |
|             </a>
 | |
|         </h2>
 | |
|     
 | |
|         {{ with .Params.description }}
 | |
|         <h3 class="article-subtitle">
 | |
|             {{ . }}
 | |
|         </h3>
 | |
|         {{ end }}
 | |
|     </div>
 | |
| 
 | |
|     {{ $showReadingTime := .Params.readingTime | default (.Site.Params.article.readingTime) }}
 | |
|     {{ $showDate := not .Date.IsZero }}
 | |
|     {{ $showFooter := or $showDate $showReadingTime }}
 | |
|     {{ if $showFooter }}
 | |
|     <footer class="article-time">
 | |
|         {{ if $showDate }}
 | |
|             <div>
 | |
|                 {{ partial "helper/icon" "date" }}
 | |
|                 <time class="article-time--published">
 | |
|                     {{- .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}}
 | |
|                 </time>
 | |
|             </div>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{ if $showReadingTime }}
 | |
|             <div>
 | |
|                 {{ partial "helper/icon" "clock" }}
 | |
|                 <time class="article-time--reading">
 | |
|                     {{ T "article.readingTime" .ReadingTime }}
 | |
|                 </time>
 | |
|             </div>
 | |
|         {{ end }}
 | |
|     </footer>
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if .IsTranslated }}
 | |
|         <footer class="article-translations">
 | |
|             {{ partial "helper/icon" "language" }}
 | |
|             <div>
 | |
|                 {{ range .Translations }}
 | |
|                     <a href="{{ .Permalink }}" class="link">{{ .Language.LanguageName }}</a>
 | |
|                 {{ end }}
 | |
|             </div>
 | |
|         </footer>
 | |
|     {{ end }}
 | |
| </div>
 |