summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/boxes-section-summaries.html
blob: b293dc17da7aa312a857b422a1647b1ccbc607be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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>