aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2023-10-15 20:44:00 +0200
committerOscar Najera <hi@oscarnajera.com>2023-10-15 20:44:00 +0200
commit0ec36ee8242364847305df19e5f7f47f8b99125c (patch)
treed6500c1f8e94756737851523886319e88d96c6f7 /layouts/_default
parent7db628dc7b899b5e3f327f6f492d437d72bfdf42 (diff)
downloadhugo-minimalist-theme-0ec36ee8242364847305df19e5f7f47f8b99125c.tar.gz
hugo-minimalist-theme-0ec36ee8242364847305df19e5f7f47f8b99125c.tar.bz2
hugo-minimalist-theme-0ec36ee8242364847305df19e5f7f47f8b99125c.zip
About section with Experience items
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/about.html18
1 files changed, 12 insertions, 6 deletions
diff --git a/layouts/_default/about.html b/layouts/_default/about.html
index 6fdfaba..3fa1090 100644
--- a/layouts/_default/about.html
+++ b/layouts/_default/about.html
@@ -1,12 +1,18 @@
{{ define "hero" }}
-{{ partial "hero.html" . }}
+ {{ partial "hero.html" . }}
{{ end }}
{{ define "main" }}
-{{ range .Paginator.Pages }}
-<div class="main-content lh-copy f5 f4-ns">
-{{ .Content }}
-</div>
-{{ end }}
+ <div class="stripe-dark"></div>
+ {{ range .Paginator.Pages }}
+ <div class="stripe-dark">
+ <div class="mw7 center pv2 lh-copy f4-ns main-content ph1">
+ <h2 class="athelas lh-title f2">
+ {{ .Title }}
+ </h2>
+ {{ .Content }}
+ </div>
+ </div>
+ {{ end }}
{{ end }}