I trying to create Terms and Privacy Policy pages on my site.
How do I format it ^ better? Smaller font, space between the pipes?
Here’s the code in site-footer.html (using Zzo theme), located in /themes/zzz/layouts/partials/footer/:
<footer class="footer"> {{ partial "footer/select-lang" . }} {{ partial "footer/links-social.html" . }} {{ partial "footer/go-to-top" . }} <hr /> <div class="basicflex"> {{ range $.Param "footerLinks" }} <a href="{{ .link }}" class="footer__link" target="_blank" rel="noreferrer">{{ .name }}</a> {{ end }} <a href="{{ with .Site.Params.terms }} {{ . }} {{ end }}">Terms and Conditions</a> | <a href="{{ with .Site.Params.privacy }} {{ . }} {{ end }}">Privacy Policy</a> </div>
If I create a .md file in content/ or content/posts/ it will show up in the blog, which obviously not what I want.
Any help would be appreciated.