Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TC Chair #25

Merged
merged 2 commits into from
Aug 19, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
hugo-version: "0.120.4"
hugo-version: "0.132.2"
extended: true

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion content/about/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The Board of Directors is the executive body of the association, vested with thi
{{< people/person id="nicole-goebel" >}}
<!-- BoD further members -->
<!-- TC Chair -->
{{< people/person id="cornelius-schumacher" >}}
{{< people/person id="loic-hamelin" >}}
{{< /people/gallery >}}

### OpenRail Team {#openrail-team}
Expand Down
4 changes: 2 additions & 2 deletions data/people.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ cornelius-schumacher:
img: cornelius-schumacher.jpg
organisation: DB Systel GmbH
organisation_role: Open Source Steward
openrail_role: Chair Technical Committee
openrail_role: Open Source Management
links:
linkedin: https://www.linkedin.com/in/cschum/
github: https://github.com/cornelius
Expand All @@ -88,7 +88,7 @@ loic-hamelin:
img: loic-hamelin.jpg
organisation: SNCF Réseau
organisation_role: OSRD Program Director
openrail_role: OpenRail Team Member
openrail_role: Chair Technical Committee
links:
linkedin: https://www.linkedin.com/in/loic-hamelin/
simon-clavier:
Expand Down
4 changes: 2 additions & 2 deletions themes/openrail/layouts/partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
{{ end }}

<!-- CSS -->
{{ if .Site.IsServer }}
{{ if hugo.IsServer }}
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "scss/main.scss" . | toCSS (dict "targetPath" "css/main.css" "outputStyle" "compressed" "enableSourceMap" false) }}
<link rel="stylesheet" href="{{ ($style).RelPermalink }}">
{{ else }}
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "scss/main.scss" . | toCSS (dict "targetPath" "css/main.css" "enableSourceMap" false) }}
<link rel="stylesheet" href="{{ ($style | minify).RelPermalink }}">
{{ end }}
{{ if .Site.IsServer }}
{{ if hugo.IsServer }}
{{ $noscript := resources.Get "sass/noscript.scss" | resources.ExecuteAsTemplate "noscript.scss" . | toCSS (dict "targetPath" "css/noscript.css" "enableSourceMap" false) }}
<noscript><link rel="stylesheet" href="{{ ($noscript).RelPermalink }}" /></noscript>
{{ else }}
Expand Down
Loading