aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2023-10-13 03:12:43 +0200
committerOscar Najera <hi@oscarnajera.com>2023-10-13 03:14:55 +0200
commit82fdcd672008651dd76f8b1f506f534145d5cc7a (patch)
treed1678ccb7345170866a7dba2feed59b70ac6ea89
parent4bbc7b9a7de0002173f38918cfd69a6e64d86e00 (diff)
downloadhugo-minimalist-theme-82fdcd672008651dd76f8b1f506f534145d5cc7a.tar.gz
hugo-minimalist-theme-82fdcd672008651dd76f8b1f506f534145d5cc7a.tar.bz2
hugo-minimalist-theme-82fdcd672008651dd76f8b1f506f534145d5cc7a.zip
Striped sections
-rw-r--r--layouts/_default/baseof.html20
-rw-r--r--layouts/_default/list.html12
-rw-r--r--layouts/_default/single.html69
-rw-r--r--layouts/index.html27
4 files changed, 71 insertions, 57 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index b0a5999..2ee48da 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,12 +1,12 @@
-<!DOCTYPE html>
+<!doctype html>
<html>
- {{- partial "head.html" . -}}
- <body class="w3-theme-light">
- {{- partial "header.html" . -}}
- {{ block "hero" . }} {{ end }}
- <div id="content" class="min-vh-100 mw7 center avenir ph2">
- {{- block "main" . }}{{- end }}
- </div>
- {{- partial "footer.html" . -}}
- </body>
+ {{- partial "head.html" . -}}
+ <body class="w3-theme-light">
+ {{- partial "header.html" . -}}
+ {{ block "hero" . }}{{ end }}
+ <div id="content" class="min-vh-100 avenir">
+ {{- block "main" . }}{{- end }}
+ </div>
+ {{- partial "footer.html" . -}}
+ </body>
</html>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index f8b838d..2349bb7 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,10 +1,12 @@
{{ define "hero" }}
-{{ partial "hero.html" . }}
+ {{ partial "hero.html" . }}
{{ end }}
{{ define "main" }}
-{{ range .Paginator.Pages.ByPublishDate.Reverse }}
-{{ partial "post.html" . }}
-{{ end }}
-{{ partial "pagination.html" . }}
+ <div class="mw7 center">
+ {{ range .Paginator.Pages.ByPublishDate.Reverse }}
+ {{ partial "post.html" . }}
+ {{ end }}
+ {{ partial "pagination.html" . }}
+ </div>
{{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 77b7f97..bcd733b 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,36 +1,43 @@
{{ define "main" }}
- <header>
- <h2 class="baskerville f2 lh-title mv3">
- {{ .Title }}
- </h2>
+ <header class="mw7 center">
+ <h2 class="baskerville f2 lh-title mv3">
+ {{ .Title }}
+ </h2>
- {{ with .Params.subtitle }}
- <h3 class="f3 baskerville mv3">{{ . }}</h3>
- {{end}}
+ {{ with .Params.subtitle }}
+ <h3 class="f3 baskerville mv3">{{ . }}</h3>
+ {{ end }}
- {{ with resources.Get (index .Params.images 0) }}
- {{ $image := .Fill (default "400x400" $.Params.image_size) }}
- <div class="relative">
- <img src="{{ $image.RelPermalink }}" class="db center" alt= "{{ .Title }}">
- {{ with $.Params.caption }}
- <a href="{{ .url }}" class="link near-white absolute bottom-0 right-0 pa2 bg-black-30 br2">
- {{ .text }}
- </a>
- {{ end }}
- </div>
- {{end}}
-
- {{ if isset .Params "metadata" }}
- {{ partial "metadata.html" . }}
+ {{ with resources.Get (index .Params.images 0) }}
+ {{ $image := .Fill (default "400x400" $.Params.image_size) }}
+ <div class="relative">
+ <img
+ src="{{ $image.RelPermalink }}"
+ class="db center"
+ alt="{{ .Title }}"
+ />
+ {{ with $.Params.caption }}
+ <a
+ href="{{ .url }}"
+ class="link near-white absolute bottom-0 right-0 pa2 bg-black-30 br2"
+ >
+ {{ .text }}
+ </a>
{{ end }}
- </header>
-<div class="main-content lh-copy f5 f4-ns">
-{{ .Content }}
-</div>
-<div class="f5 f4-ns lh-copy pv2">
-{{ if isset .Params "metadata" }}
-{{ partial "author_card" . }}
-{{ end }}
-{{ partial "post_pager" . }}
-</div>
+ </div>
+ {{ end }}
+
+ {{ if isset .Params "metadata" }}
+ {{ partial "metadata.html" . }}
+ {{ end }}
+ </header>
+ <div class="main-content mw7 center lh-copy f5 f4-ns">
+ {{ .Content }}
+ </div>
+ <div class="f5 f4-ns lh-copy pv2">
+ {{ if isset .Params "metadata" }}
+ {{ partial "author_card" . }}
+ {{ end }}
+ {{ partial "post_pager" . }}
+ </div>
{{ end }}
diff --git a/layouts/index.html b/layouts/index.html
index b75e6f8..cf04902 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,17 +1,22 @@
{{ define "hero" }}
-{{ partial "hero.html" . }}
+ {{ partial "hero.html" . }}
{{ end }}
{{ define "main" }}
-<!-- Page Content -->
-{{ range $index, $element := where .Pages "Type" "in" .Site.Params.mainSections }}
-{{ range first 4 .Pages.ByPublishDate.Reverse }}
-{{ partial "post.html" . }}
-{{ end }}
+ <!-- Page Content -->
-<div class="tc pa3">
- <i class="fas fa-angle-right"></i>
- <a href="{{ .Type }}" class="f3 link near-black">See all</a>
-</div>
-{{ end }}
+ <div class="stripe-dark"></div>
+ {{ range $index, $element := where .Pages "Type" "in" .Site.Params.mainSections }}
+ <div class="stripe-dark">
+ <div class="mw7 center">
+ {{ range first 3 .Pages.ByPublishDate.Reverse }}
+ {{ partial "post.html" . }}
+ {{ end }}
+ <div class="tc pa3">
+ <i class="fas fa-angle-right"></i>
+ <a href="{{ .Type }}" class="f3 link near-black">See all</a>
+ </div>
+ </div>
+ </div>
+ {{ end }}
{{ end }}