Skip to content

Commit 2931e49

Browse files
authored
Initial commit
0 parents  commit 2931e49

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Trigger publishing site
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Send trigger
13+
run: |
14+
curl --fail -L -X POST \
15+
-H 'Accept: application/vnd.github+json' \
16+
-H 'Authorization: Bearer ${{ secrets.GH_PAT_REPO_WORKFLOW_CODERDOJO024 }}' \
17+
-H 'X-GitHub-Api-Version: 2022-11-28' \
18+
https://api.github.com/repos/coderdojonijmegen/hugo-coderdojo-nijmegen/actions/workflows/publish.yml/dispatches \
19+
-d '{"ref":"main"}'

LICENSE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
2+
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ or
3+
send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Instructie template
2+
3+
Zie [index.md](index.md) voor instructies hoe deze template te gebruiken.
4+
5+
## Licentie
6+
Deze instructies worden, net als alle andere instructies van CoderDojo Nijmegen, aangeboden onder een [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Licentie](http://creativecommons.org/licenses/by-nc-sa/4.0/).

index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "Instructie template"
3+
date: 2024-09-20T15:51:01+02:00
4+
draft: false
5+
toc: true
6+
headercolor: "teal-background"
7+
onderwerp: Python
8+
---
9+
10+
> Korte introductie dat wordt getoond in het overzicht van alle instructies
11+
12+
<!--more-->
13+
14+
> Te doen:
15+
> 1. Pas [FrontMatter](https://gohugo.io/content-management/front-matter/) aan boven in dit bestand.
16+
> - `title` naar een passende titel bij deze instructie
17+
> - `data` naar vandaag
18+
> - `onderwerp` naar de gebruikte techniek aanpassen, bijvoorbeeld Python (wordt gebruikt om te sorteren per onderwerp)
19+
> 2. Denk qua structuur aan:
20+
> - Introductie van het onderwerp
21+
> - Wat heb je nodig (programma's/materialen)
22+
> - De instructie zelf verdeelt over stappen; het is fijn als kinderen per stap al resultaat kunnen zien
23+
> - Afronding met bijvoorbeeld uitdagingen op basis van het geleerde en/of linkjes naar pagina's met nog meer informatie over het onderwerp
24+
> 3. Laat onderstaande licentie staan
25+
>
26+
> Bekijk [deze uitleg](https://github.com/coderdojonijmegen/hugo-coderdojo-nijmegen/blob/main/README.md) over hoe je kunt zien
27+
> hoe je instructies er uit zien in de site.
28+
29+
{{< licentie rel="http://creativecommons.org/licenses/by-nc-sa/4.0/">}}

0 commit comments

Comments
 (0)