Skip to content
Merged
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
21 changes: 0 additions & 21 deletions .devcontainer/devcontainer.json

This file was deleted.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/imfing/hextra-starter-template

go 1.21

require github.com/imfing/hextra v0.8.3 // indirect
require github.com/imfing/hextra v0.12.3 // indirect

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description updated

4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github.com/imfing/hextra v0.8.3 h1:peKCtkOwcVMQV2EqMb/VUhwpYDsI1B14U1rDqAgMHzk=
github.com/imfing/hextra v0.8.3/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=
github.com/imfing/hextra v0.12.3 h1:DZHY2rUWYteyzjlHi9r4n7Bb5e2Q+6LXe4C1Dqn0ZjM=
github.com/imfing/hextra v0.12.3/go.mod h1:vi+yhpq8YPp/aghvJlNKVnJKcPJ/VyAEcfC1BSV9ARo=
5 changes: 5 additions & 0 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ menu:
type: search

params:
# Populates RSS managingEditor/webMaster (read by Hextra's RSS template).
author:
name: ReproNim
email: info@repronim.org

navbar:
displayTitle: ReproNim
displayLogo: true
Expand Down
2 changes: 1 addition & 1 deletion layouts/shortcodes/fellows-resources.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ $resources := site.Data.fellowsresources.resources }}
{{ $resources := hugo.Data.fellowsresources.resources }}
Comment thread
asmacdo marked this conversation as resolved.
<link rel="stylesheet" href="/css/fellows-resources.css">
<div class="fellows-resources-container">
{{ range $resources }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/shortcodes/people.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{ $listParam := .Get 0 }} <!-- Get the first argument passed to the shortcode -->
{{ $people := index .Site.Data $listParam }}
{{ $people := index hugo.Data $listParam }}
Comment thread
asmacdo marked this conversation as resolved.

<link rel="stylesheet" href="/css/people.css">
<div class="people-gallery">
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ publish = "public"
command = "hugo --gc --minify -b ${DEPLOY_PRIME_URL}"

[build.environment]
HUGO_VERSION = "0.132.2"
HUGO_VERSION = "0.161.1"
DEPLOY_PRIME_URL = "https://repronim.org"
Comment thread
asmacdo marked this conversation as resolved.


Expand Down
Loading