mirror of
				https://github.com/imfing/hextra.git
				synced 2025-11-03 20:04:54 -05:00 
			
		
		
		
	* chore(docs): rename `exampleSite` to `docs` and create `examples` * chore(build): update build script to support new version format and source directories; add v0.10 to documentation menu
		
			
				
	
	
		
			12 lines
		
	
	
		
			628 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			628 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{- $version := .Get "version" | default "" -}}
 | 
						|
{{- $icon := .Get "icon" | default "" -}}
 | 
						|
{{- $defaultLink := cond (eq $version "") "https://github.com/imfing/hextra/tree/main" (printf "https://github.com/imfing/hextra/releases/tag/%s" $version) -}}
 | 
						|
{{- $link := .Get "link" | default $defaultLink -}}
 | 
						|
{{- $content := cond (eq $version "") "New in main branch" (printf "New in %s" $version) -}}
 | 
						|
 | 
						|
<div style="margin-top: 1rem; display: inline-flex;">
 | 
						|
  <a href="{{ $link }}" title="{{ $link | plainify }}" target="_blank">
 | 
						|
    {{- partial "shortcodes/badge" (dict "content" $content "border" true "icon" $icon) -}}
 | 
						|
  </a>
 | 
						|
</div>
 |