feat: add shortcodes to build Hextra home page (#90)

* feat: add feature grid and card shortcodes

* feat: add markdown content to hextra home

* chore: add button for hextra home

* chore: add heading and subtitle

* chore: finish moving hextra home to shortcodes

* chore: regenerate css

* chore: improve hextra home layout shortcodes

* chore: update css

* chore: decrease button size
This commit is contained in:
Xin
2023-09-26 08:15:31 +01:00
committed by GitHub
parent 01f7e3a425
commit 3c4ede96df
11 changed files with 181 additions and 132 deletions

View File

@ -1,9 +1,9 @@
{{- $name := .Get "name" | default (.Get 0) -}}
{{- $icon := index site.Data.icons (.Get 0) -}}
{{- $attributes := "height=1em"}}
{{- $icon := index site.Data.icons $name -}}
{{- $attributes := .Get "attributes" | default "height=1em"}}
{{- if not $icon -}}
{{ errorf "icon %q not found" (.Get 0) }}
{{ errorf "icon %q not found" $name }}
{{- end -}}
{{- $icon = replaceRE "<svg" (printf "<svg %s" $attributes) $icon -}}