diff options
author | Alejandro <alex.mac.fon@gmail.com> | 2024-08-04 21:58:51 -0600 |
---|---|---|
committer | Alejandro <alex.mac.fon@gmail.com> | 2024-08-04 21:58:51 -0600 |
commit | e8c01953f28b5937261a816bacb728ca12d07c47 (patch) | |
tree | c83df05efcfcb7d460dd8cf48c73c26af6b0ac17 | |
parent | 67fcc95a5543d6c2fe97778b2af263c59f11431e (diff) |
added: button for future header
-rw-r--r-- | layouts/shortcodes/button-list.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layouts/shortcodes/button-list.html b/layouts/shortcodes/button-list.html new file mode 100644 index 0000000..d6ea466 --- /dev/null +++ b/layouts/shortcodes/button-list.html @@ -0,0 +1,8 @@ +<select name="Academia"> +{{ $p := where .Site.Pages "Section" "==" "academia" }} +{{ range $p }} +{{range .Sections}} +<option value="{{.Title}}">{{.Title}}</option> +{{end}} +{{ end }} +</select> |