Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Set up Hugo
env:
HUGO_VERSION: '0.150.0'
HUGO_VERSION: '0.163.0'
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
Expand Down
2 changes: 1 addition & 1 deletion README-repo.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ and you get the site files in `public/`.

The `hugo.toml` file contains the main configuration settings for the Hugo project.

- **languageCode**: Defines the default language for the website
- **locale**: Defines the default language for the website
(set to American English).

- **title**: The title of the website.
Expand Down
2 changes: 1 addition & 1 deletion hugo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
languageCode = 'en-US'
locale = 'en-US'
title = 'CSAF'
disableKinds = ["taxonomy", "RSS", "sitemap"]
ignoreFiles = [".license$"]
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/presentations.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<main class="container-fluid bg-gray-400 px-3 px-lg-5">
<div class="container py-4 py-lg-5">
<div class="d-flex flex-column gap-4 gap-lg-5">
{{ range .Site.Data.presentations }}
{{ range hugo.Data.presentations }}
<div class="ratio-16x9 mx-auto">
{{ partial "general/youtube.html" .link }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="text-white">Common Security Advisory Framework (CSAF)</h1>
<section class="py-5">
<div class="index__container container">
<div class="row g-4 flex-column flex-sm-row">
{{ range .Site.Data.index_links }}
{{ range hugo.Data.index_links }}
<div class="col-12 col-md-6 col-lg-3">
{{ partial "pages/index/index-card.html" . }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/general/highlighted-link.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ $highlight := .Site.Data.navbarHighlightedLink }}
{{ $highlight := hugo.Data.navbarHighlightedLink }}
{{ $current := .RelPermalink }}

{{ $hasVisibleContent := and ($highlight.visible) ($highlight.url) ($highlight.text) }}
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/general/navbar-links.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<ul class="navbar-nav">
{{ range .Site.Data.navlinksInternal }}
{{ range hugo.Data.navlinksInternal }}
{{ partial "general/navbar-link.html" (dict "link" . "page" $.Page) }}
{{ end }}
<li class="navbar-nav__separator"></li>
{{ range .Site.Data.navlinksExternal }}
{{ range hugo.Data.navlinksExternal }}
{{ partial "general/navbar-link.html" (dict "link" .) }}
{{ end }}
<li>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/pages/events/sponsors.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ $groups := site.Data }}
{{ $groups := hugo.Data }}
{{ range (split .jsonPath ".") }}
{{ $groups = index $groups . }}
{{ end }}
Expand Down
Loading