1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-30 02:05:57 -04:00

majorly refactor SCSS and pray nothing breaks

This commit is contained in:
2021-09-29 09:42:36 -04:00
parent ddc0780fbd
commit 12db17b83c
22 changed files with 289 additions and 244 deletions
+3 -3
View File
@@ -2,14 +2,14 @@
<div class="layout layout-list">
{{- with .Pages }}
{{- range .GroupByDate "2006" }}
<section class="year">
<section class="list-section-year">
<h2>{{ .Key }}</h2>
<ul>
{{- with .Pages }}
{{- range . }}
<li>
<div class="date">{{ .Date.Format "Jan 2" }}</div>
<div class="title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></div>
<div class="list-item-date">{{ .Date.Format "Jan 2" }}</div>
<div class="list-item-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></div>
</li>
{{- end }}
{{- end }}