Skip to content

Commit d175b5a

Browse files
authored
Merge pull request #6 from USRSE/jsubida/hugo
feat: add Hugo site
2 parents 7924c80 + a18804b commit d175b5a

File tree

10 files changed

+67
-0
lines changed

10 files changed

+67
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy Hugo site to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
with:
15+
submodules: true # Fetch Hugo theme submodule
16+
17+
- name: Setup Hugo
18+
uses: peaceiris/actions-hugo@v2
19+
with:
20+
hugo-version: 'latest'
21+
extended: true
22+
23+
- name: Build
24+
run: hugo --minify
25+
26+
- name: Deploy
27+
uses: peaceiris/actions-gh-pages@v3
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: ./public
31+

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/public/
2+
/resources/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/hugo-book"]
2+
path = themes/hugo-book
3+
url = https://github.com/alex-shpak/hugo-book

.hugo_build.lock

Whitespace-only changes.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ Our members focus on:
1212
We welcome participants at any stage of their RSE community-building journey, from those exploring initial steps to those leading established groups. Through regular meetings, members exchange practical insights on community outreach, event planning, and maintaining active engagement while addressing the unique organizational contexts and challenges each institution faces.
1313

1414
If you have a question or want to learn about the experiences of others, please head over to our [Discussion Forum](https://github.com/USRSE/ag-institutional-rse-networking/discussions)!
15+
16+
## Website
17+
18+
Built using [Hugo](https://gohugo.io). Theme is [Hugo Book](https://github.com/alex-shpak/hugo-book)

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

content/_index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Welcome
2+
3+
The Institutional RSE Networking Affinity Group connects Research Software Engineers (RSEs) who support or aspire to develop RSE communities within their organizations. Whether your institution has an established RSE program or is just beginning to recognize RSE work, this group provides a collaborative space to share strategies and experiences. Our members focus on:
4+
5+
Identifying and connecting with RSEs across institutional departments
6+
Building sustainable local RSE communities
7+
Developing effective networking and engagement strategies
8+
Sharing best practices for community leadership
9+
We welcome participants at any stage of their RSE community-building journey, from those exploring initial steps to those leading established groups. Through regular meetings, members exchange practical insights on community outreach, event planning, and maintaining active engagement while addressing the unique organizational contexts and challenges each institution faces.

content/posts/hello.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Hello"
3+
date: 2025-05-30T08:27:43-05:00
4+
# bookComments: false
5+
# bookSearchExclude: false
6+
---
7+
8+
World

hugo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
baseURL = 'https://usrse.github.io/ag-institutional-rse-networking/'
2+
languageCode = 'en-us'
3+
title = 'Institutional RSE Networking'
4+
theme = "hugo-book"

themes/hugo-book

Submodule hugo-book added at 0c86b5d

0 commit comments

Comments
 (0)