Test hugo

This commit is contained in:
Madison Scott-Clary
2019-12-23 00:39:19 -08:00
parent 8313bf5359
commit 06cee736e5
16 changed files with 48 additions and 92 deletions

View File

@ -0,0 +1,6 @@
---
date: 2019-11-01
weight: 4
---
The surgery

View File

@ -1,6 +1,6 @@
--- ---
#date: 2019-11-01 date: 2019-11-01
#weight: 6 weight: 6
--- ---
The hospital and airbnb The hospital and airbnb

View File

@ -1,6 +1,6 @@
--- ---
#date: 2019-11-01 date: 2019-11-01
#weight: 8 weight: 8
--- ---
the drive home mixed with retrospection the drive home mixed with retrospection

View File

@ -1,6 +0,0 @@
---
#date: 2019-11-01
#weight: 4
---
The surgery

View File

@ -1,7 +1,3 @@
--- ---
type: serial type: serial
--- ---
<!--
Interleave post-op images with prose
--->

View File

@ -1,65 +0,0 @@
* Surgery
* Decisions
* Deciding on surgery
* Deciding on a surgeon
* First round prep
* Getting letters (part 1)
* Getting the consult
* The consult
* The problem of hair
* Laser
* Electrolysis
* Leading up to surgery
* Getting letters (part 2)
* The pre-op appointments
* Mom visit
* Bowel prep
* Driving and the night before
* Surgery
* The morning of
* Waking up and the first night
* The hospital stay
* The bed
* Bed rest
* Bowel movements
* Breathing and fever
* The dressing
* The first sight
* Nerves mapping
* Anxiety and pain
* Medications
* timing
* Oxy/tylenol
* The heat
* The packing
* The drains
* The catheter
* The packing itself
* Peeing and showering
* The post-op stay
* The drive to the Airbnb
* Getting partner
* Drainage
* Showering and company
* Bacitracin
* Getting off oxy
* Getting comfortable
* Walking with cane
* Post-op visit
* Leaving Airbnb
* Powell's
* Getting there early
* Kat Campos and getting dilators
* Home
* The drive home
* Seeing dogs
* Dilating
* Shopping
* Healing
* Dilating and increasing size
* PT
* Lifting
* Walking
* Breathing
* Tensing/muscle control/kegels
* Healing well

View File

@ -1,10 +1,13 @@
{{ define "main" }} {{ define "main" }}
<main id="main">
{{ .Content }}
{{ $paginator := .Paginate (where .Pages.ByPublishDate.Reverse ".Params.date" "!=" nil) 1 }} {{ $paginator := .Paginate (where .Pages.ByPublishDate.Reverse ".Params.date" "!=" nil) 1 }}
{{ $content := .Content }}
{{ range $paginator.Pages.ByWeight }} {{ range $paginator.Pages.ByWeight }}
<main id="main"{{ if (isset .Params "fit" )}} class="fit"{{ end }}>
{{ $content }}
<div class="page">
<p class="date">{{ .Date.Format "January 2, 2006" }}</p> <p class="date">{{ .Date.Format "January 2, 2006" }}</p>
{{ .Content }} {{ .Content }}
</div>
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</main> </main>

View File

@ -1,10 +1,13 @@
{{ define "main" }} {{ define "main" }}
<main id="main"> {{ $paginator := .Paginate (where .Pages.ByPublishDate.Reverse ".Params.date" "!=" nil) 1 }}
{{ .Content }} {{ $content := .Content }}
{{ $paginator := .Paginate (where .Pages ".Params.date" "!=" nil) 1 }}
{{ range $paginator.Pages.ByWeight }} {{ range $paginator.Pages.ByWeight }}
<main id="main"{{ if (isset .Params "fit" )}} class="fit"{{ end }}>
{{ $content }}
<div class="page">
<p class="date">{{ .Date.Format "January 2, 2006" }}</p> <p class="date">{{ .Date.Format "January 2, 2006" }}</p>
{{ .Content }} {{ .Content }}
</div>
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
{{ if (isset .Params "back") }} {{ if (isset .Params "back") }}

View File

@ -29,6 +29,7 @@ a {
.zoom a { .zoom a {
border: none; border: none;
font-size: 2em; font-size: 2em;
outline: none !important;
} }
abbr { abbr {
text-decoration: none; text-decoration: none;
@ -86,7 +87,13 @@ main {
} }
main.full { main.full {
max-width: 100%; max-width: 100%;
text-align: center; }
main.full svg {
margin: auto;
}
main.fit .page .verse {
white-space: pre;
overflow-x: scroll;
} }
main.fit svg { main.fit svg {
max-width: 100%; max-width: 100%;
@ -122,6 +129,9 @@ blockquote em {
white-space: pre-wrap; white-space: pre-wrap;
margin-top: 0; margin-top: 0;
} }
.verse blockquote {
margin-bottom: 0;
}
.cw { .cw {
color: #800; color: #800;
text-align: right; text-align: right;
@ -238,3 +248,12 @@ ul.pagination .page-item.active a {
border: none; border: none;
cursor: text; cursor: text;
} }
@media only screen and (max-width: 500px) {
main.fit .page .verse {
font-size: 10pt;
}
main.fit .page .verse blockquote {
font-size: 8pt;
}
}