Skip to content

Commit 7b2b8c4

Browse files
authored
Initial commit
0 parents  commit 7b2b8c4

36 files changed

Lines changed: 2401 additions & 0 deletions

.github/workflows/render_page.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: render page
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-python@v4
12+
with:
13+
python-version: 3.x
14+
- run: |
15+
pip install mkdocs-material mkdocs-bibtex neoteroi-mkdocs mkdocs-video
16+
mkdocs gh-deploy --force
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# File: .github/workflows/template-sync.yml
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 1 * *"
6+
workflow_dispatch:
7+
jobs:
8+
repo-sync:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
# To use this repository's private action, you must check out the repository
13+
- name: Checkout
14+
uses: actions/checkout@v3
15+
- name: actions-template-sync
16+
uses: AndreasAugustin/actions-template-sync@v0.8.0
17+
with:
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
source_repo_path: elixir-europe-training/ELIXIR-TrP-LessonTemplate-MkDocs
20+
upstream_branch: main

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store*
2+
site/

.templatesyncignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
docs/chapters/
2+
docs/assets/cards/
3+
docs/assets/images/cards/
4+
docs/*.md
5+
site/
6+
.github/
7+
*.md
8+
mkdocs.yml
9+
references.bib
10+
overrides/*.html
11+
./README.md
12+
README.md

CITATION.cff

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- family-names: "van Geest"
5+
given-names: "Geert"
6+
orcid: "https://orcid.org/0000-0002-1561-078X"
7+
- family-names: "Kronander"
8+
given-names: "Elin"
9+
- family-names: "Herrera"
10+
given-names: "Jose Alejandro Romero"
11+
orcid: "https://orcid.org/0000-0002-4765-2087"
12+
- family-names: "Žlender"
13+
given-names: "Nadja"
14+
- family-names: "Cardona"
15+
given-names: "Alexia"
16+
orcid: "https://orcid.org/0000-0002-7877-5565"
17+
18+
title: "The ELIXIR Training Lesson Template - Developing Training Together"
19+
version: v1.0.0-alpha
20+
doi: 10.5281/zenodo.7913092
21+
date-released: 2023-05-09
22+
url: "https://doi.org/10.5281/zenodo.7913092"

0 commit comments

Comments
 (0)