23 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{- $ThemeVersion := "3.10.0" -}}
 | |
| <footer class="site-footer">
 | |
|     <section class="copyright">
 | |
|         ©
 | |
|         {{ if and (.Site.Params.footer.since) (ne .Site.Params.footer.since (int (now.Format "2006"))) }}
 | |
|             {{ .Site.Params.footer.since }} -
 | |
|         {{ end }}
 | |
|         {{ now.Format "2006" }} {{ .Site.Title }}
 | |
|     </section>
 | |
| 
 | |
|     <section class="powerby">
 | |
|         {{ with .Site.Params.footer.customText }}
 | |
|             {{ . | safeHTML }} <br/>
 | |
|         {{ end }}
 | |
| 
 | |
|         {{- $Generator := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}}
 | |
|         {{- $Theme := printf `<b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="%s">Stack</a></b>` $ThemeVersion -}}
 | |
|         {{- $DesignedBy := `<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>` -}}
 | |
| 
 | |
|         {{ T "footer.builtWith" (dict "Generator" $Generator) | safeHTML }} <br />
 | |
|         {{ T "footer.designedBy" (dict "Theme" $Theme "DesignedBy" $DesignedBy) | safeHTML }}
 | |
|     </section>
 | |
| </footer>
 |