1
0
Fork 0
forked from mirrors/hugo-tufte

Compare commits

...

2 commits

Author SHA1 Message Date
f9ac8f83c4 nav above copyright? 2024-12-08 04:11:14 +01:00
d8a18e639e menu? 2024-12-08 04:10:52 +01:00
2 changed files with 11 additions and 2 deletions
assets/scss
layouts/_default

View file

@ -60,6 +60,15 @@ mark {
background: #ddd;
}
// Styling for menu
menu {
margin: auto !important;
text-align: center !important;
width: 100% !important;
}
/* ------------------------------------------------------------------------ */
/* Styling for listing pages. */

View file

@ -10,7 +10,7 @@ This template render single pages
{{ partial "content.header.html" . }}
{{ partial "toc.html" . }}
<section>{{ .Content }}</section>
<section>{{ partial "footer.html" . }}</section>
<section>{{ partial "nav.html" . }}</section>
<section>{{ partial "nav.html" . }}</section>
<section>{{ partial "footer.html" . }}</section>
</article>
{{ end }}