summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html')
-rw-r--r--docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html
new file mode 100644
index 000000000..b293dc17d
--- /dev/null
+++ b/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html
@@ -0,0 +1,46 @@
+<div class="relative {{ .classes }} weight-{{ .context.Weight }}">
+ <div class="bg-white mb2 pa3 pa4-l gray">
+
+ {{ $href := .context.RelPermalink }}
+ {{ if eq .context.Section "news" }}
+ {{ $href = .context.Permalink }}
+ <time class="f6 db" datetime="{{ .context.Date.Format `2006-01-02T15:04:05Z07:00` }}">
+ {{ .context.Date.Format "January 2, 2006" }}
+ </time>
+ {{ end }}
+
+ <h1 class="near-black f3">
+ <a href="{{ $href }}" class="link primary-color dim">
+ {{ .context.Title }}
+ </a>
+ </h1>
+ <div class="lh-copy links">
+ {{ if eq .context.Section "commands" }}
+ {{ replaceRE `(?s).*?##\s.*?\n\n(.*?)\n.*` "$1" .context.RawContent }}
+ {{ else }}
+
+ {{ if in (slice "functions" "methods") .context.Type }}
+ {{ with $signature := index .context.Params.action.signatures 0 }}
+ {{ if $.context.Params.action.returnType }}
+ {{ $signature = printf "%s ⟼ %s" $signature $.context.Params.action.returnType }}
+ {{ end }}
+ <pre class="f6 mb3 ph3 pv2 bg-light-gray overflow-x-auto">
+ {{- $signature -}}
+ </pre>
+ {{ end }}
+ {{ end }}
+
+ {{ if .context.Params.description }}
+ {{ .context.Params.description | markdownify }}
+ {{ else }}
+ {{ .context.Summary }}
+ {{ end }}
+
+ {{ end }}
+ <a href="{{ $href }}" class="f6 mt2 db link primary-color dim">
+ Read More &raquo;
+ </a>
+ </div>
+
+ </div>
+</div>