-
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.
- Loading branch information
0 parents
commit 9ed97d7
Showing
4 changed files
with
57 additions
and
0 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,19 @@ | ||
name: Trigger publishing site | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Send trigger | ||
run: | | ||
curl --fail -L -X POST \ | ||
-H 'Accept: application/vnd.github+json' \ | ||
-H 'Authorization: Bearer ${{ secrets.GH_PAT_REPO_WORKFLOW_CODERDOJO024 }}' \ | ||
-H 'X-GitHub-Api-Version: 2022-11-28' \ | ||
https://api.github.com/repos/coderdojonijmegen/hugo-coderdojo-nijmegen/actions/workflows/publish.yml/dispatches \ | ||
-d '{"ref":"main"}' |
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 @@ | ||
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. | ||
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ or | ||
send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. |
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,6 @@ | ||
# Instructie template | ||
|
||
Zie [index.md](index.md) voor instructies hoe deze template te gebruiken. | ||
|
||
## Licentie | ||
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/). |
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,29 @@ | ||
--- | ||
title: "Instructie template" | ||
date: 2024-09-20T15:51:01+02:00 | ||
draft: false | ||
toc: true | ||
headercolor: "teal-background" | ||
onderwerp: Python | ||
--- | ||
|
||
> Korte introductie dat wordt getoond in het overzicht van alle instructies | ||
<!--more--> | ||
|
||
> Te doen: | ||
> 1. Pas [FrontMatter](https://gohugo.io/content-management/front-matter/) aan boven in dit bestand. | ||
> - `title` naar een passende titel bij deze instructie | ||
> - `data` naar vandaag | ||
> - `onderwerp` naar de gebruikte techniek aanpassen, bijvoorbeeld Python (wordt gebruikt om te sorteren per onderwerp) | ||
> 2. Denk qua structuur aan: | ||
> - Introductie van het onderwerp | ||
> - Wat heb je nodig (programma's/materialen) | ||
> - De instructie zelf verdeelt over stappen; het is fijn als kinderen per stap al resultaat kunnen zien | ||
> - Afronding met bijvoorbeeld uitdagingen op basis van het geleerde en/of linkjes naar pagina's met nog meer informatie over het onderwerp | ||
> 3. Laat onderstaande licentie staan | ||
> | ||
> Bekijk [deze uitleg](https://github.com/coderdojonijmegen/hugo-coderdojo-nijmegen/blob/main/README.md) over hoe je kunt zien | ||
> hoe je instructies er uit zien in de site. | ||
{{< licentie rel="http://creativecommons.org/licenses/by-nc-sa/4.0/">}} |