-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We keep only the projects overview and add a workflow to only create html from the markdown using pandoc. Also adds an index.html for redirecting from the github page to the rdm website.
- Loading branch information
1 parent
4b383e2
commit 1299a76
Showing
45 changed files
with
141 additions
and
2,539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# pandoc | ||
|
||
name: Docs to html | ||
# This workflow is triggered on pushes to the repository. | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
# Paths can be used to only trigger actions when you have edited certain files, such as a file within the /docs directory | ||
paths: | ||
- 'docs/projects.md' | ||
|
||
jobs: | ||
convert_via_pandoc: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: create output dir | ||
run: mkdir output | ||
- uses: docker://pandoc/core:2.9 | ||
with: | ||
args: >- # allows you to break string into multiple lines | ||
--css=styling.css | ||
--from=gfm | ||
--to=html | ||
--standalone | ||
--self-contained | ||
--output=output/projects.html | ||
docs/projects.md | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: html | ||
path: output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Gemfile.lock | ||
Gemfile | ||
_site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
|[Home](index.md)|[Projects](_pages/projects/index.md)|[Publications](_pages/publications/index.md)|[Manuals](_pages/manuals/index.md)| | ||
|---|---|---|---| | ||
|
||
## Research Engineering at Utrecht University | ||
|
||
This is the repo of our [team website](https://utrechtuniversity.github.io/research-engineering/) build with [GitHub Pages](https://docs.github.com/en/pages) and [Jekyll](https://jekyllrb.com/). | ||
|
||
- To contribute, please create a pull request and ask a team member to review. | ||
This used to be the repository for keeping our team website. Currently it is only used for maintaining our projects overview. | ||
|
||
- You can also build the website locally to preview and test changes. See instructions for [testing Github pages locally](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll). | ||
### To update the overview: | ||
|
||
- If you like to customize the layout and style, please read the docs on the [Slate theme](https://github.com/pages-themes/slate). | ||
1. Create a branch | ||
2. Update `docs/projects.md` | ||
3. Create a pull request and assign Raoul or Jelle to review it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
theme: jekyll-theme-slate | ||
title: Research Engineering team | ||
description: Connecting Research and IT at Utrecht University | ||
baseurl: /research-engineering | ||
include: ['_pages'] | ||
markdown: kramdown | ||
theme: jekyll-theme-cayman |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.