forked from coderetreat/coderetreat.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (22 loc) · 997 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
title: Articles
description: Posts about coderetreat experiences or format
layout: default
image:
src: /images/10-years/letters.jpg
---
<h2>Coderetreat Experiences by Former Attendees and Facilitators</h2>
{% include share-your-article.html %}
<h3>AS AN ATTENDEE</h3>
{% assign articles = site.data.articles.experiences.as-an-attendee | where_exp: 'article', 'article.title != ""' | sort: 'year' | reverse %}
{% include articles-list.html %}
<h3>AS A FACILITATOR</h3>
{% assign articles = site.data.articles.experiences.as-a-facilitator | where_exp: 'article', 'article.title != ""' | sort: 'year' | reverse %}
{% include articles-list.html %}
<h2>Coderetreat Format</h2>
{% assign articles = site.data.articles.about-the-format | where_exp: 'article', 'article.title != ""' | sort: 'year' | reverse %}
{% include articles-list.html %}
{% include share-your-article.html %}
<p class="last-section">
<a href="{% link pages/blog.html %}">Where's the old Blog section?</a>
</p>