lpk-website

Lillehammer pistolklubb website
git clone https://git.echoz.io/lpk-website.git
Log | Files | Refs | README | LICENSE

commit 4da0336686feeccc06aee13936c7e5cc9dbe774b
parent fea984ed4b6b46d4bc2be5bd673b6ac433cb5e2c
Author: Chris <chris@echoz.io>
Date:   Wed,  1 Feb 2023 23:58:58 +0100

feat: add latest news to home page

Diffstat:
Mconfig.yaml | 3+++
Alayouts/partials/index_profile.html | 96+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 99 insertions(+), 0 deletions(-)

diff --git a/config.yaml b/config.yaml @@ -35,6 +35,9 @@ params: googleMapsKey: AIzaSyDpVZFx5Lmh9fYSlm7hCMDhylB-9Cbnl_M defaultTheme: auto disableThemeToggle: true + homePostListTitle: + title: Siste nytt + url: /nyheter profileMode: enabled: true title: Lillehammer Pistolklubb diff --git a/layouts/partials/index_profile.html b/layouts/partials/index_profile.html @@ -0,0 +1,96 @@ +<div class="profile" style="flex-direction: column;"> + {{- with site.Params.profileMode }} + <div class="profile_inner"> + {{- if .imageUrl -}} + {{- $img := "" }} + {{- if not (urls.Parse .imageUrl).IsAbs }} + {{- $img = resources.Get .imageUrl }} + {{- end }} + {{- if $img }} + {{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}} + {{- if hugo.IsExtended -}} + {{- $processableFormats = $processableFormats | append "webp" -}} + {{- end -}} + {{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }} + {{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}} + {{- if (not (and (not .imageHeight) (not .imageWidth))) }} + {{- $img = $img.Resize (printf "%dx%d" .imageWidth .imageHeight) }} + {{- else if .imageHeight }} + {{- $img = $img.Resize (printf "x%d" .imageHeight) }} + {{ else if .imageWidth }} + {{- $img = $img.Resize (printf "%dx" .imageWidth) }} + {{ else }} + {{- $img = $img.Resize "150x150" }} + {{- end }} + {{- end }} + <img draggable="false" src="{{ $img.Permalink }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}" + height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" /> + {{- else }} + <img draggable="false" src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}" + height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" /> + {{- end }} + {{- end }} + <h1>{{ .title | default site.Title | markdownify }}</h1> + <span>{{ .subtitle | markdownify }}</span> + {{- partial "social_icons.html" site.Params.socialIcons -}} + + {{- with .buttons }} + <div class="buttons"> + {{- range . }} + <a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name }}"> + <span class="button-inner"> + {{ .name }} + {{- if (findRE "://" .url) }}&nbsp; + <svg fill="none" shape-rendering="geometricPrecision" stroke="currentColor" stroke-linecap="round" + stroke-linejoin="round" stroke-width="2.5" viewBox="0 0 24 24" height="14" width="14"> + <path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"></path> + <path d="M15 3h6v6"></path> + <path d="M10 14L21 3"></path> + </svg> + {{- end }} + </span> + </a> + {{- end }} + </div> + {{- end }} + </div> + {{- end }} + {{- with site.Params.homePostListTitle }} + <a href="{{ .url | absURL }}" style="text-align: left; width: 100%;"><h2 style="margin: 32px auto 24px;">{{ .title }}</h2></a> + {{- end }} + {{- $pages := union .RegularPages .Sections }} + {{- $pages = where site.RegularPages "Type" "in" site.Params.mainSections }} + {{- $pages = where $pages "Params.hiddenInHomeList" "!=" "true" }} + {{- $pages = first 3 $pages }} + + {{- $term := .Data.Term }} + {{- range $index, $page := $pages }} + + {{- $class := "post-entry" }} + {{- if $term }} + {{- $class = "post-entry tag-entry" }} + {{- end }} + + <article class="post-entry" style="text-align: left; width: 100%; background-"> + {{- $isHidden := (site.Params.cover.hidden | default site.Params.cover.hiddenInList) }} + {{- partial "cover.html" (dict "cxt" . "IsHome" true "isHidden" $isHidden) }} + <header class="entry-header"> + <h2> + {{- .Title }} + {{- if .Draft }}<sup><span class="entry-isdraft">&nbsp;&nbsp;[draft]</span></sup>{{- end }} + </h2> + </header> + {{- if (ne (.Param "hideSummary") true) }} + <div class="entry-content"> + <p>{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}</p> + </div> + {{- end }} + {{- if not (.Param "hideMeta") }} + <footer class="entry-footer"> + {{- partial "post_meta.html" . -}} + </footer> + {{- end }} + <a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a> + </article> + {{- end }} + </div>