-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
6 changed files
with
28 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# open-projecten | ||
Overzicht van open projecten | ||
Overzicht van open projecten vanuit het perspectief van [Code for NL](https://www.codefor.nl). | ||
|
||
# EduXS standaard | ||
We maken gebruik van de [EduXS standaard](https://eduxs.eu/data-model/) om de projecten te beschrijven. |
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,2 @@ | ||
id,identity,slug,name,full_name | ||
1,"Organisation","minjenv","Ministerie van Justitie en Veiligheid","Ministerie van Justitie en Veiligheid" |
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,2 @@ | ||
id,identity,slug,name,full_name,description | ||
1,"Project","gegevensboekhouding-jenv","Gegevensboekhouding JenV","Gegevensboekhouding JenV","Het ministerie van Justitie en Veiligheid (JenV) ontwikkelt een tool voor de administratie van gegevens en algoritmes." |
Empty file.
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,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="nl"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Projecten | Code for NL</title> | ||
</head> | ||
<body> | ||
{{ content }} | ||
</body> | ||
</html> |
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,9 @@ | ||
--- | ||
layout: default | ||
--- | ||
{% for project in site.data.projecten %} | ||
<div class="{{ project.identity }}"> | ||
<h2>{{ project.full_name }}</h2> | ||
<p>{{ project.description }}</p> | ||
</div> | ||
{% endfor %} |