summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/pagelayout.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/pagelayout.html')
-rw-r--r--docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/pagelayout.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/pagelayout.html b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/pagelayout.html
new file mode 100644
index 000000000..dd048223e
--- /dev/null
+++ b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/pagelayout.html
@@ -0,0 +1,34 @@
+{{ $section_to_display := .section_to_display }}
+ <div class="w-100 ph4 pb5 pb6-ns pt1 mt4 pt3-ns">
+
+ <div class="flex">
+ <div class="dn db-l w-20">
+ {{ partial "nav-links-docs.html" .context }}
+ </div>
+
+ <div class="w-100 w-80-l ph0 ph4-l">
+ <article class="w-100 nested-copy-line-height nested-links nested-img">
+ <h1 class="primary-color-dark f2">
+ {{ with $.context.Data.Singular }}{{ . | humanize }}: {{ end }}{{ .context.Title }}
+ </h1>
+ <div class="{{ .Site.Params.copyClass }} mid-gray f5 f4-l">
+ {{ .context.Content }}
+ </div>
+ </article>
+
+ <!-- TODO: May be a good idea in this case to add monthly archives -->
+
+ <div class="flex flex-wrap">
+ {{ $interior_classes := .context.Site.Params.flex_box_interior_classes }}
+ <section class="flex-ns flex-wrap justify-between w-100">
+ {{ range $section_to_display }}
+ {{ partial "boxes-section-summaries" (dict "context" . "classes" $interior_classes "fullcontent" true) }}
+ {{ end }}
+ </section>
+ </div>
+
+ </div>
+
+ </div>
+
+</div>