Merge branch 'preview' into feature/test-pipeline

This commit is contained in:
2026-04-03 08:40:09 +00:00
4 changed files with 49 additions and 34 deletions

View File

@@ -3,9 +3,15 @@
} }
.lang-toggle-icon { .lang-toggle-icon {
margin-left: auto; margin-left: 0;
svg { svg {
width: 64px; width: 64px;
height: 24px; height: 24px;
} }
} }
.container {
.left-sidebar {
width: unset;
}
}

View File

@@ -21,6 +21,9 @@ rm -rf "$CLONE_DIR"
echo "- Cloning $REPO_URL (branch: $BRANCH)..." echo "- Cloning $REPO_URL (branch: $BRANCH)..."
git clone --recurse-submodules --branch "$BRANCH" "$REPO_URL" "$CLONE_DIR" git clone --recurse-submodules --branch "$BRANCH" "$REPO_URL" "$CLONE_DIR"
# Patch .Site.Data references not yet fixed in Stack theme
sed -i 's/\.Site\.Data/hugo.Data/g' "$CLONE_DIR/themes/stack/layouts/_partials/article/components/photoswipe.html"
# Generate static files with hugo # Generate static files with hugo
echo "- Building site with Hugo v$HUGO_VERSION in $HUGO_DEST..." echo "- Building site with Hugo v$HUGO_VERSION in $HUGO_DEST..."
hugo --source "$CLONE_DIR" --destination "$HUGO_DEST" --baseURL="https://${URL}" ${DRAFTS} --logLevel info --cleanDestinationDir --gc --panicOnWarning --printI18nWarnings hugo --source "$CLONE_DIR" --destination "$HUGO_DEST" --baseURL="https://${URL}" ${DRAFTS} --logLevel info --cleanDestinationDir --gc --panicOnWarning --printI18nWarnings

View File

@@ -1,8 +1,13 @@
{{- $IsList := .IsList -}}
{{- $Page := .Page -}}
<div class="article-details"> <div class="article-details">
{{ if .Params.categories }} {{ if $Page.Params.categories }}
<header class="article-category"> <header class="article-category">
{{ range (.GetTerms "tags") }} {{ range ($Page.GetTerms "tags") }}
<a href="{{ .RelPermalink }}" {{ with .Params.style }}style="background-color: {{ .background }}; color: {{ .color }};"{{ end }}> {{ $color := partial "helper/color-from-str" .LinkTitle }}
{{ $BackgroundColor := default $color.BackgroundColor .Params.style.background }}
{{ $TextColor := default $color.TextColor .Params.style.color }}
<a href="{{ .RelPermalink }}" style="background-color: {{ $BackgroundColor | safeCSS }}; color: {{ $TextColor | safeCSS }};">
{{ .LinkTitle }} {{ .LinkTitle }}
</a> </a>
{{ end }} {{ end }}
@@ -12,49 +17,50 @@
<div class="article-title-wrapper"> <div class="article-title-wrapper">
<h2 class="article-title"> <h2 class="article-title">
<a href="{{ .RelPermalink }}"> <a href="{{ .RelPermalink }}">
{{- .Title -}} {{- $Page.Title -}}
</a> </a>
</h2> </h2>
{{ with .Params.description }} {{ with $Page.Params.description }}
<h3 class="article-subtitle"> <h3 class="article-subtitle">
{{ . }} {{ . }}
</h3> </h3>
{{ end }} {{ end }}
</div> </div>
{{ $showReadingTime := .Params.readingTime | default (.Site.Params.article.readingTime) }} {{ $showReadingTime := $Page.Params.readingTime | default ($Page.Site.Params.article.readingTime) }}
{{ $showDate := not .Date.IsZero }} {{ $showDate := not $Page.Date.IsZero }}
{{ $showFooter := or $showDate $showReadingTime }} {{ $showTime := or $showDate $showReadingTime }}
{{ if $showFooter }}
<footer class="article-time">
{{ if $showDate }}
<div>
{{ partial "helper/icon" "date" }}
<time class="article-time--published">
{{- .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}}
</time>
</div>
{{ end }}
{{ if $showReadingTime }} {{ if $showTime }}
<div> <footer class="article-meta">
{{ partial "helper/icon" "stopwatch" }} <div class="inline-meta">
<time class="article-time--reading"> {{ if $showDate }}
{{ T "article.readingTime" .ReadingTime }} {{ partial "helper/icon" "date" }}
<time class="article-time--published" datetime='{{ $Page.Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{- $Page.Date | time.Format $Page.Site.Params.dateFormat.published -}}
</time> </time>
</div> {{ end }}
{{ end }}
{{- $date := .Date.Format "20060102" | int -}} {{ if $showReadingTime }}
{{- $lastmod := .Lastmod.Format "20060102" | int -}} {{ partial "helper/icon" "clock" }}
{{- if gt $lastmod $date -}} <time class="article-time--reading">
<div class="article-lastmod"> {{ T "article.readingTime" $Page.ReadingTime }}
{{ partial "helper/icon" "refresh" }} </time>
<time> {{ end }}
{{ T "article.lastUpdatedOn" }} {{ .Lastmod | time.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }}
</time> {{- $date := $Page.Date.Format "20060102" | int -}}
</div> {{- $lastmod := $Page.Lastmod.Format "20060102" | int -}}
{{- end -}} {{- if gt $lastmod $date -}}
<div class="article-lastmod">
{{ partial "helper/icon" "refresh" }}
<time>
{{ T "article.lastUpdatedOn" }} {{ $Page.Lastmod | time.Format ( or $Page.Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }}
</time>
</div>
{{- end -}}
</div>
</footer> </footer>
{{ end }} {{ end }}
</div> </div>