Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
419c290
Hugo prototype
joeroe Jan 11, 2021
6258aeb
Add more concise section list layouts
joeroe Jan 11, 2021
332e01f
Add GitHub Action for building hugo
joeroe Jan 12, 2021
7857a9e
Update GitHub Pages hugo action
joeroe Jan 12, 2021
bc4ab95
Set baseurl to fork temporarily
joeroe Jan 12, 2021
aeee037
Note source of gh-pages workflow
joeroe Jan 12, 2021
1ad7391
Add breadcrumbs
joeroe Jan 13, 2021
eee4d9c
Add index pages for session subsections
joeroe Jan 13, 2021
6b54026
Reduce font brightness and weight a touch
joeroe Jan 13, 2021
1608601
fixed order of steering committee members
nevrome Jan 19, 2021
11e2989
Merge pull request #1 from nevrome/master
joeroe Jan 22, 2021
dd0ded7
Added minutes for today's meeting
nevrome Feb 2, 2021
ab3a90a
Merge pull request #2 from nevrome/patch-1
joeroe Feb 3, 2021
1497189
Change theme to risotto
joeroe Mar 5, 2021
910794a
Change theme to risotto
joeroe Mar 5, 2021
e46d0d3
Fix conflict
joeroe Mar 5, 2021
29d90b0
Update README with instructions for new site
joeroe Mar 5, 2021
0c8f63b
More concise links
joeroe Mar 5, 2021
0ace366
Minor copyedit
joeroe Mar 5, 2021
35e7765
Update theme
joeroe Mar 5, 2021
8f0d957
Preserve spacing when minified
joeroe Mar 5, 2021
d62a173
Remove terminal submodule
joeroe Mar 5, 2021
f969352
Clean unneeded files
joeroe Mar 5, 2021
ef27755
Remove old submodule files
joeroe Mar 5, 2021
08f69a2
Update theme
joeroe Mar 5, 2021
0c6e7b1
Add 2021-03-05 minutes
joeroe Mar 22, 2021
aadb93f
Fix conflict
joeroe Mar 22, 2021
61da553
Add members DriesDaems10 and bbartholdy
joeroe Mar 22, 2021
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
31 changes: 31 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# https://github.com/peaceiris/actions-hugo
name: github pages

on:
push:
branches:
- master # Set a branch to deploy

jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
# extended: true

- name: Build
run: hugo --minify

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ vignettes/*.pdf
*.utf8.md
*.knit.md
.Rproj.user

# Hugo build files
/public/
/resources/_gen/
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "themes/risotto"]
path = themes/risotto
url = https://github.com/joeroe/risotto.git

1 change: 0 additions & 1 deletion .nojekyll

This file was deleted.

Loading