-
Notifications
You must be signed in to change notification settings - Fork 5
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
4 changed files
with
112 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,8 @@ | ||
--- | ||
basics: | ||
name: Johan Groenen | ||
summary: Hi, mijn naam is Johan en ik ben mede-oprichter en voorzitter van Stichting Code for NL. In 2015 ben ik via Waag als Code Fellow aan de slag gegaan bij de Gemeente Amsterdam. Daar heb ik Datalab Amsterdam mee opgezet en daarmee binnen Amsterdam de eerste stappen gezet naar open, interne ontwikkeling van software. | ||
image: https://www.jgroenen.nl/img/jgroenen.png | ||
email: [email protected] | ||
url: https://www.jgroenen.nl | ||
--- |
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,16 @@ | ||
title: Code Fellows | Code for NL | ||
subtitle: Overzicht van Code for NL Code Fellows | ||
img: https://assets.codefor.nl/codefornl/img/logo.png | ||
url: https://www.codefor.nl/code-fellows | ||
|
||
collections: | ||
code-fellows: | ||
output: true | ||
permalink: /code-fellow/:name/ | ||
|
||
defaults: | ||
- scope: | ||
type: code-fellows | ||
values: | ||
layout: default | ||
collection: code-fellows |
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,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="https://www.codefor.nl/css/style.css" type="text/css" media="all"> | ||
</head> | ||
|
||
<body> | ||
<nav class="nav__site"> | ||
<div class="nav__logo"> | ||
<a href="../"><img src="https://codefor.nl/img/Logo-orange-01.png"></a> | ||
<div class="nav__hamburger"> | ||
<span class="hamburger"></span> | ||
</div> | ||
</div> | ||
<ul class="nav__menu"> | ||
<li><a href="https://codefor.nl/">home</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<header> | ||
<div class="action-box action-appathon-statement-announcement"> | ||
<div class="action-box__action"><span>Samenwerken aan een open, eerlijke en inclusieve digitale overheid.</span></div> | ||
</div> | ||
</header> | ||
{{ 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,56 @@ | ||
--- | ||
layout: default | ||
--- | ||
<section class="text-center"> | ||
<h2>Code Fellows</h2> | ||
|
||
<p>Kijk op <a href="https://github.com/codefornl/code-fellows">Github</a> om jezelf als Code Fellow toe te laten voegen. We gebruiken hiervoor de <a href="https://jsonresume.org/schema/">JSON Resume</a> standaard.</a></p> | ||
|
||
<div class="person-list"> | ||
{% for code-fellow in site.code-fellows %} | ||
<div class="person"> | ||
<img class="picture" src="{{ code-fellow.basics.image }}"> | ||
<p> | ||
{{ code-fellow.basics.name }}<br> | ||
<a href="mailto:{{ code-fellow.basics.email }}">{{ code-fellow.basics.email }}</a> | ||
</p> | ||
<p>{{ code-fellow.basics.summary }}</p> | ||
<p class="social"> | ||
<a class="websiteBtn smGlobalBtn" href="{{ code-fellow.basics.url }}"></a> | ||
</p> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</section> | ||
|
||
<section class="text-center principles-section"> | ||
<!-- <h2>Onze Principes</h2> --> | ||
<div class="principles"> | ||
|
||
<div class="principle"> | ||
<h3>We werken aan overheid en maatschappij, niet aan politiek.</h3> | ||
<!-- <p></p> --> | ||
</div> | ||
|
||
<div class="principle"> | ||
<h3>We ontwikkelen oplossingen voor en met burgers.</h3> | ||
<!-- <p></p> --> | ||
</div> | ||
|
||
<div class="principle"> | ||
<h3>We laten zien wat mogelijk is.</h3> | ||
<!-- <p></p> --> | ||
</div> | ||
|
||
<div class="principle"> | ||
<h3>We werken open en transparant.</h3> | ||
<!-- <p></p> --> | ||
</div> | ||
|
||
<div class="principle"> | ||
<h3>We bouwen mee aan een ecosysteem.</h3> | ||
<!-- <p></p> --> | ||
</div> | ||
|
||
</div> | ||
</section> |