mirror of
				https://github.com/imfing/hextra.git
				synced 2025-10-31 08:34:52 -04:00 
			
		
		
		
	
		
			
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | # {{ .Site.Title }} | ||
|  | 
 | ||
|  | > {{ .Site.Params.description }} | ||
|  | 
 | ||
|  | {{ range $section := site.Sections }} | ||
|  | {{- template "llms-section-tree" dict "context" . "level" 2 }} | ||
|  | {{ end }} | ||
|  | 
 | ||
|  | {{- $rootPages := where site.RegularPages "Section" "" }} | ||
|  | {{- if $rootPages }} | ||
|  | 
 | ||
|  | ## Root Pages | ||
|  | {{- range $rootPages }} | ||
|  | - [{{ .Title }}]({{ .Permalink }}): {{ .Summary | plainify | truncate 100 | strings.TrimSpace }}{{ if .Date }} - Published {{ .Date.Format "2006-01-02" }}{{ end }} | ||
|  | {{- end }} | ||
|  | {{- end }} | ||
|  | 
 | ||
|  | --- | ||
|  | Generated on {{ now.Format "2006-01-02 15:04:05 UTC" }} | ||
|  | Site: {{ .Site.BaseURL }} | ||
|  | 
 | ||
|  | {{- define "llms-section-tree" -}} | ||
|  | {{- $context := .context -}} | ||
|  | {{- $level := .level | default 2 -}} | ||
|  | {{- $headerHashes := strings.Repeat $level "#" -}} | ||
|  | {{- "\n" -}} | ||
|  | {{ $headerHashes }} {{ $context.Title }} | ||
|  | 
 | ||
|  | {{- range $context.RegularPages }} | ||
|  | - [{{ .Title }}]({{ .Permalink }}): {{ .Summary | plainify | truncate 100 | strings.TrimSpace }}{{ if .Date }} - Published {{ .Date.Format "2006-01-02" }}{{ end }} | ||
|  | {{- end }} | ||
|  | 
 | ||
|  | {{- range $context.Sections }} | ||
|  | {{ template "llms-section-tree" dict "context" . "level" (add $level 1) }} | ||
|  | {{- end }} | ||
|  | {{- end -}} |