mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-30 17:53:28 -05:00 
			
		
		
		
	It didn't last very long. Speed isn't really a concern currently since my sites all generate in ~50ms (on my computer, at least).
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ if or .Date .IsTranslated .Site.Params.wordcount .Site.Params.readingtime .Site.Params.repoURL }}
 | |
| <div class="post-metadata">
 | |
|     {{ if .Date }}
 | |
|     <span class="post-meta-item">
 | |
|         {{ partial "icon.html" "calendar" }}
 | |
|         <time datetime="{{ .Date.Format "January 2, 2006" }}" pubdate>
 | |
|             {{ i18n "long_date" (dict "Date" .Date "Data" .Site.Data) }}
 | |
|         </time>
 | |
|     </span>
 | |
| 
 | |
|     {{ if not .Site.Params.repoURL }}
 | |
|     {{ if ne .Lastmod .Date }}
 | |
|     <span class="post-meta-item">
 | |
|         {{ partial "icon.html" "edit-2" }}
 | |
|         <time datetime="{{ .Lastmod.Format "2006-01-02" }}" pubdate>
 | |
|             {{ i18n "long_date" (dict "Date" .Lastmod "Data" .Site.Data) }}
 | |
|         </time>
 | |
|         {{ end }}
 | |
|     </span>
 | |
|     {{ end }}
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if .IsTranslated }}
 | |
|     <span class="post-meta-item">
 | |
|         {{ partial "icon.html" "globe" }}
 | |
|         {{ range .Translations }}
 | |
|         <a href="{{ .Permalink }}">{{ .Language }}</a>
 | |
|         {{ end }}
 | |
|     </span>
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if .Site.Params.wordcount }}
 | |
|     <span class="post-meta-item">
 | |
|         {{ partial "icon.html" "type" }}
 | |
|         {{ i18n "wordcount" .WordCount }}
 | |
|     </span>
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if .Site.Params.readingtime }}
 | |
|     <span class="post-meta-item">
 | |
|         {{ partial "icon.html" "clock" }}
 | |
|         {{ i18n "readingtime" .ReadingTime }}
 | |
|     </span>
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if .Site.Params.repoURL }}
 | |
|     {{ with .GitInfo }}
 | |
|     <span class="post-meta-item">
 | |
|         {{ partial "icon.html" "git-commit" }}
 | |
|         <a href="{{ (printf "%s/commit/%s" $.Site.Params.repoURL .Hash) | absLangURL }}">
 | |
|             <code>{{ .AbbreviatedHash }}</code>
 | |
|         </a>
 | |
|     </span>
 | |
|     {{ end }}
 | |
|     {{ end }}
 | |
| 
 | |
|     <div class="tags">
 | |
|         {{ range (.GetTerms "tags") }}
 | |
|         <span class="post-meta-item">
 | |
|             {{ partial "icon.html" "tag" }}
 | |
|             <a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
 | |
|         </span>
 | |
|         {{ end }}
 | |
|     </div>
 | |
| </div>
 | |
| {{ end }}
 |