mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00

* Make the theme compliant with W3C standards (#55) * Dropped the line because chrome tab is deprecated. * On header, "li" elements are meant to surround the "a" elements and not the other way around. * Dropped all section tags I could find at first glance, as they had no semantic meaning and were firing warnings at the W3C validator. * Change "middot" from a helper div to a helper class since putting div's inside ul's is not compliant * Fixed a problem of the previous commit. A middot would not hide if on mobile. * Fix archetypes bug with Go templates * Fix additional validation error in 404
20 lines
633 B
HTML
20 lines
633 B
HTML
{{ partial "header.html" . }}
|
|
<div class="main column">
|
|
<div class="container">
|
|
<div class="content">
|
|
<div class="posts">
|
|
<div class="page-heading">Blog</div>
|
|
<ul>
|
|
{{ range .Data.Pages.GroupByDate "Jan, 2006" "desc"}}
|
|
<li class="groupby">{{ .Key }}</li>
|
|
{{ range .Pages.ByPublishDate }}
|
|
{{ partial "li.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|