fix/not-deploying-hugo-v159 #9

Merged
Vezpi merged 22 commits from fix/not-deploying-hugo-v159 into preview 2026-04-03 10:02:12 +02:00
5 changed files with 51 additions and 42 deletions

View File

@@ -23,10 +23,7 @@ jobs:
docker_folder_changed: ${{ steps.docker_folder.outputs.changed }} docker_folder_changed: ${{ steps.docker_folder.outputs.changed }}
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 run: git clone --branch ${{ gitea.ref_name }} https://${{ secrets.REPO_TOKEN }}@git.vezpi.com/Vezpi/blog.git .
with:
ref: ${{ gitea.ref_name }}
token: ${{ secrets.REPO_TOKEN }}
- name: Check Latest Hugo Version - name: Check Latest Hugo Version
id: get_latest id: get_latest
@@ -81,10 +78,7 @@ jobs:
shell: sh shell: sh
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 run: git clone --branch ${{ gitea.ref_name }} https://${{ secrets.REPO_TOKEN }}@git.vezpi.com/Vezpi/blog.git .
with:
ref: ${{ gitea.ref_name }}
token: ${{ secrets.REPO_TOKEN }}
- name: Build Docker Image - name: Build Docker Image
run: | run: |

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 $showTime }}
<footer class="article-meta">
<div class="inline-meta">
{{ if $showDate }} {{ if $showDate }}
<div>
{{ partial "helper/icon" "date" }} {{ partial "helper/icon" "date" }}
<time class="article-time--published"> <time class="article-time--published" datetime='{{ $Page.Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{- .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}} {{- $Page.Date | time.Format $Page.Site.Params.dateFormat.published -}}
</time> </time>
</div>
{{ end }} {{ end }}
{{ if $showReadingTime }} {{ if $showReadingTime }}
<div> {{ partial "helper/icon" "clock" }}
{{ partial "helper/icon" "stopwatch" }}
<time class="article-time--reading"> <time class="article-time--reading">
{{ T "article.readingTime" .ReadingTime }} {{ T "article.readingTime" $Page.ReadingTime }}
</time> </time>
</div>
{{ end }} {{ end }}
{{- $date := .Date.Format "20060102" | int -}}
{{- $lastmod := .Lastmod.Format "20060102" | int -}} {{- $date := $Page.Date.Format "20060102" | int -}}
{{- $lastmod := $Page.Lastmod.Format "20060102" | int -}}
{{- if gt $lastmod $date -}} {{- if gt $lastmod $date -}}
<div class="article-lastmod"> <div class="article-lastmod">
{{ partial "helper/icon" "refresh" }} {{ partial "helper/icon" "refresh" }}
<time> <time>
{{ T "article.lastUpdatedOn" }} {{ .Lastmod | time.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }} {{ T "article.lastUpdatedOn" }} {{ $Page.Lastmod | time.Format ( or $Page.Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }}
</time> </time>
</div> </div>
{{- end -}} {{- end -}}
</div>
</footer> </footer>
{{ end }} {{ end }}
</div> </div>