Hugo
Result Name Email Option One Two Submit Shortcode layouts/shortcodes/rawhtml.html <style> .rawhtml-container { padding: 1rem; border: 1px solid #ddd; background-color: #f9f9f9; border-radius: 8px; overflow-x: auto; } /* Styling for form elements */ .rawhtml-container input, .rawhtml-container select, .rawhtml-container textarea, .rawhtml-container button { margin: 5px 0; padding: 8px; font-size: 1rem; border: 1px solid #ccc; border-radius: 4px; } .rawhtml-container button { background-color: #007bff; color: white; cursor: pointer; } .rawhtml-container button:hover { background-color: #0056b3; } .layouts\partials\terms.html {{ if eq $page.Params.type "slides" }} {{- with $page.GetTerms $taxonomy }} <ul class="tags-footer-left"> {{- range . }} <li><a href="{{ .RelPermalink }}">{{ .LinkTitle | lower }}</a></li> {{- end }} </ul> {{- end }} {{ else }} {{- with $page.GetTerms $taxonomy }} {{- $label := (index . 0).Parent.LinkTitle }} <div> <div>{{ $label }}:</div> <ul> {{- range . }} <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li> {{- end }} </ul> </div> {{- end }} {{ end }} static\css\slides.layouts\partials\terms.html {{ if eq $page.Params.type "slides" }} {{- with $page.GetTerms $taxonomy }} <ul class="tags-footer-left"> {{- range . }} <li><a href="{{ .RelPermalink }}">{{ .LinkTitle | lower }}</a></li> {{- end }} </ul> {{- end }} {{ else }} {{- with $page.GetTerms $taxonomy }} {{- $label := (index . 0).Parent.LinkTitle }} <div> <div>{{ $label }}:</div> <ul> {{- range . }} <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li> {{- end }} </ul> </div> {{- end }} {{ end }} static\css\slides.