forked from CSSclasses/CSSclasses
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
33 lines (26 loc) · 1.12 KB
/
about.html
File metadata and controls
33 lines (26 loc) · 1.12 KB
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
33
---
layout: subpage
title: CSSclasses – ABOUT US
---
<section>
<h1>About</h1>
<p>CSSclasses is for beginners and experts alike: Using CSS as a simple and low-barrier entry language, we empower people to understand their browser and to learn how to experiment with code. Workshop and hackathon in one event.</p>
{% for city in site.data.cities %}
<h2>{{city.name}}</h2>
{% include introduction-city.html text=city.introduction %}
<h3>Team</h3>
<div class="flex-row">
{% for member in site.data.teams[city.key] %}
{% include team-element.html name=member.name image-file-name=member.image-file-name twitter=member.twitter github=member.github website=member.website %}
{% endfor %}
</div>
{% if site.data.coaches[city.key] %}
<h3>Coaches</h3>
<ul>
{% for coach in site.data.coaches[city.key] %}
{% include coaches-element.html name=coach.name twitter=coach.twitter github=coach.github %}
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</section>