Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
twisst authored Dec 3, 2024
0 parents commit 9ed97d7
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/trigger_publishing_site.yml
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"}'
3 changes: 3 additions & 0 deletions LICENSE
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.
6 changes: 6 additions & 0 deletions README.md
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/).
29 changes: 29 additions & 0 deletions index.md
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/">}}

0 comments on commit 9ed97d7

Please sign in to comment.