Skip to content

Commit 2444f23

Browse files
authored
Merge pull request #90 from clojurebridge-berlin/update-about-us
Update About Us section
2 parents 8525b78 + ca69a53 commit 2444f23

File tree

17 files changed

+105
-24
lines changed

17 files changed

+105
-24
lines changed

_config.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,61 @@ url: "http://clojurebridge-berlin.github.io" # the base hostname & protocol for
2020

2121
# Build settings
2222
markdown: kramdown
23+
24+
team:
25+
- name: Ben
26+
image: ben.png
27+
url: https://twitter.com/socksy
28+
- name: Franka
29+
image: franka.jpg
30+
url: http://franka.tech
31+
- name: Danielle
32+
image: dani.jpg
33+
url: https://twitter.com/dantoml
34+
- name: Dave
35+
image: dave.png
36+
url: http://daveliepmann.com
37+
- name: Johanna
38+
image: johanna.jpg
39+
url: https://twitter.com/JohanannC
40+
- name: Julia
41+
image: julia.jpg
42+
url: https://twitter.com/anderspree
43+
- name: Lisa
44+
image: lislis.png
45+
url: http://lislis.de
46+
- name: Nils
47+
image: nils.png
48+
url: http://nils-blum-oeste.net
49+
- name: Saskia
50+
image: saskia.jpg
51+
url: http://saskialindner.com
52+
- name: Tibor
53+
image: tibor.jpg
54+
url: http://codebeige.net
55+
- name: Anna
56+
image: anna.jpg
57+
url:
58+
- name: daiyi
59+
image: daiyi.jpg
60+
url: https://twitter.com/daiyitastic
61+
62+
team-alumni:
63+
- name: Arne
64+
url: https://twitter.com/plexus
65+
image:
66+
- name: Bettina
67+
url: https://twitter.com/thatbettina
68+
image:
69+
- name: Jelle
70+
url: https://twitter.com/jellea
71+
image:
72+
- name: Malwine
73+
url: https://twitter.com/malweene
74+
image:
75+
- name: Martin
76+
url: https://twitter.com/martinklepsch
77+
image:
78+
- name: Nicola
79+
url: https://twitter.com/nicsnet
80+
image:

_includes/team-alumni.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{% for person in include.people %}
2+
<a href={{ person.url }}>{{ person.name }}</a>
3+
{% endfor %}
4+
5+
<script>
6+
var team = document.querySelector('.team-alumni');
7+
for (var i = team.children.length; i >= 0; i--) {
8+
team.appendChild(team.children[Math.random() * i | 0]);
9+
}
10+
</script>

_includes/team.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{% for person in include.people %}
2+
<div class="col-md-4 col-sm-2 col-xs-4 team-member">
3+
<img src="/images/headshots/{{ person.image }}">
4+
<a href={{ person.url }}>{{ person.name }}</a>
5+
</div>
6+
{% endfor %}
7+
8+
<script>
9+
var team = document.querySelector('.team');
10+
for (var i = team.children.length; i >= 0; i--) {
11+
team.appendChild(team.children[Math.random() * i | 0]);
12+
}
13+
</script>

assets/stylesheet.css

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,18 @@ section.module.content {
4040
text-align: center;
4141
}
4242

43-
.team {
44-
margin-left: 15%;
43+
.team-member {
44+
margin-bottom: 25px
45+
}
46+
47+
.team-member img {
4548
border-radius: 50%;
46-
width: 70%;
47-
margin-bottom: 10%;
49+
width: 100%;
50+
margin-bottom: 5px;
51+
}
52+
53+
.team-alumni a:not(:last-child)::after {
54+
content: ", "
4855
}
4956

5057
.arrow {

images/headshots/anna.jpg

50.6 KB
Loading

images/headshots/ben.png

157 KB
Loading

images/headshots/daiyi.jpg

160 KB
Loading

images/headshots/dani.jpg

19.7 KB
Loading

images/headshots/dave.png

191 KB
Loading

images/headshots/franka.jpg

9.6 KB
Loading

0 commit comments

Comments
 (0)