42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!-- The Footer -->
 | |
| <footer
 | |
|   aria-label="Site Info"
 | |
|   class="
 | |
|     d-flex flex-column justify-content-center text-muted
 | |
|     flex-lg-row justify-content-lg-between align-items-lg-center pb-lg-3
 | |
|   "
 | |
| >
 | |
|   <p>
 | |
|     ©
 | |
|     <time>{{ now.Year }}</time>
 | |
| 
 | |
|     {{ with .Site.Params.social }}
 | |
|       {{ if .url }}
 | |
|         <a href="{{ .url }}">{{ .name }}</a>.
 | |
|       {{ end }}
 | |
|     {{ end }}
 | |
| 
 | |
|     <span
 | |
|       data-bs-toggle="tooltip"
 | |
|       data-bs-placement="top"
 | |
|       title="{{ T "copyright.verbose" }}"
 | |
|     >
 | |
|       {{- T "copyright.brief" -}}
 | |
|     </span>
 | |
|   </p>
 | |
| 
 | |
|   <p>
 | |
|     {{- $platform := `<a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>` -}}
 | |
| 
 | |
|     {{- $theme := printf `<a
 | |
|         data-bs-toggle="tooltip"
 | |
|         data-bs-placement="top"
 | |
|         title="v%s"
 | |
|         href="https://github.com/cotes2020/jekyll-theme-chirpy"
 | |
|         target="_blank"
 | |
|         rel="noopener"
 | |
|       >Chirpy</a>` .Site.Params.theme_version -}}
 | |
| 
 | |
|     {{ T "meta" | replaceRE ":PLATFORM" $platform | replaceRE ":THEME" $theme | safeHTML }}
 | |
|   </p>
 | |
| </footer> | 
