mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 20:22:38 +00:00
e509cac533
cb18a5183Fix broken link07a0198bfConfig: Place Google Analytics tag ID under the services key4bf0c719fFix typo50d8ad1afFix muiltilingual menu definition instructions1a32519a9Fix typos6f34ca8e0Explain usage of front matter to target a template5bd977257Improve goldmark config docs447632938Remove Docker notes from installation instructions84741d173Update reference to hugo.work0338d7c71Fix menu templatef5d2f5ed4Fix typos in content/en/functions/fmta3a40ff99Add return type to functions85ac3e779Remove outdated feature imaged47d889e4Fix signatures7551ba28fDocument safe.JSStr functione77993be0Document keyVals function4dba20db3Update themebabf91544Update echoparam8c8203efaAdjust related functions4cb1b30fcFix exampleba95eca64Improve showcase prose5d3dcf366Add Overmind Studios showcase8d634ac70Change code blocks from indented to fencedcfab978e6Add missing code fences407dd5c47Limit related pages for functions to other functions9fa67d981Fix .Site.LastChange doc393aa16d0netlify: Hugo 0.119.0f864af97adocs: Even more about images.Process9d772d5f0docs: More about images.Processbc655f869docs: Regen docshelper41c3536d1Merge commit '9aec42c5452b3eb224888c50ba1c3f3b68a447e9'918ed53f4Add images.Process filter573645883Add $image.Processa1151b0fdAdd images.Opacity filter git-subtree-dir: docs git-subtree-split:cb18a5183f
35 lines
985 B
HTML
35 lines
985 B
HTML
<header class="flex-none w-100">
|
|
{{ if .Params.categories }}
|
|
{{ range .Params.categories }}
|
|
<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}" class="f6 fw8 mb0 link mid-gray dim mr3">
|
|
{{ humanize . | upper }}
|
|
</a>
|
|
{{ end }}
|
|
{{end}}
|
|
<h1 class="lh-title mb3 mv0 pt3 primary-color-dark">
|
|
{{ .Title }}
|
|
</h1>
|
|
</header>
|
|
|
|
<aside class="bt bw1 pt3 mt2 mid-gray b--mid-gray fn w-100">
|
|
{{ with .Params.description }}
|
|
<div class="f4 fw4 lh-copy">
|
|
{{ . | markdownify }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<!--
|
|
NOTE: Removed to test builds without it.
|
|
partial "components/author-github-data" (dict "context" . "size" "110") -->
|
|
</aside>
|
|
|
|
{{ with .Params.featured_image_path }}
|
|
<img src="{{ . }}" alt="Featured Image for {{ $.Title }}" class="mw-100">
|
|
{{ end }}
|
|
|
|
<div class="prose prose-{{ .Type }}" id="prose">
|
|
{{- partial "docs/functions-signatures.html" . -}}
|
|
{{- partial "docs/functions-aliases.html" . -}}
|
|
{{ .Content }}
|
|
</div>
|