Skip to content

Commit df9e44b

Browse files
author
nembal
committed
governance update
1 parent ab56aa3 commit df9e44b

File tree

4 files changed

+104
-0
lines changed

4 files changed

+104
-0
lines changed

governance/about.html

+53
Original file line numberDiff line numberDiff line change
@@ -877,6 +877,59 @@ <h6>Rouven Heck</h6>
877877
</div>
878878
</section>
879879

880+
<section class="counter-section">
881+
<div class="container">
882+
<div class="row justify-content-center m-45px-b md-m-20px-b sm-m-15px-b">
883+
<div class="col-12 col-md-10 col-lg-7">
884+
<div class="section-title text-center">
885+
<h2 class="font-alt">DIF team</h2>
886+
<div class="title-border"><span class="lg"></span><span class="md"></span><span class="sm"></span></div>
887+
<p>The OG team making sure DIF is run properly</p>
888+
</div>
889+
</div>
890+
</div>
891+
892+
<div class="row justify-content-center">
893+
894+
<div class="col-10 col-md-6 col-lg-4 m-15px-tb">
895+
<div class="our-team">
896+
<div class="info m-30px-tb">
897+
<h6>Juan Caballero</h6>
898+
<label>Communications @ DIF / Spruce</label>
899+
</div>
900+
<ul class="social-icons">
901+
902+
<li><a class="linkedin" href="https://www.linkedin.com/in/juan-caballero"><svg><use xlink:href="#linkedin"></use></svg></a></li>
903+
904+
905+
<li><a class="twitter" href="https://twitter.com/by_caballero"><svg><use xlink:href="#twitter"></use></svg></a></li>
906+
907+
</ul>
908+
</div>
909+
</div>
910+
911+
<div class="col-10 col-md-6 col-lg-4 m-15px-tb">
912+
<div class="our-team">
913+
<div class="info m-30px-tb">
914+
<h6>Balázs Némethi</h6>
915+
<label>Operations at DIF / Taqanu</label>
916+
</div>
917+
<ul class="social-icons">
918+
919+
<li><a class="linkedin" href="https://www.linkedin.com/in/balazsnemethi"><svg><use xlink:href="#linkedin"></use></svg></a></li>
920+
921+
922+
<li><a class="twitter" href="https://twitter.com/nembal"><svg><use xlink:href="#twitter"></use></svg></a></li>
923+
924+
</ul>
925+
</div>
926+
</div>
927+
928+
</div>
929+
</div>
930+
</section>
931+
932+
880933

881934
</main>
882935
<footer class="footer">

images/photos/balazs_nemethi.jpeg

156 KB
Loading

templates/governance.html

+36
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,40 @@ <h6>{{key}}</h6>
124124
</div>
125125
</section>
126126

127+
<section class="counter-section">
128+
<div class="container">
129+
<div class="row justify-content-center m-45px-b md-m-20px-b sm-m-15px-b">
130+
<div class="col-12 col-md-10 col-lg-7">
131+
<div class="section-title text-center">
132+
<h2 class="font-alt">DIF team</h2>
133+
<div class="title-border"><span class="lg"></span><span class="md"></span><span class="sm"></span></div>
134+
<p>The OG team making sure DIF is run properly</p>
135+
</div>
136+
</div>
137+
</div>
138+
139+
<div class="row justify-content-center">
140+
{% for key, val in team %}
141+
<div class="col-10 col-md-6 col-lg-4 m-15px-tb">
142+
<div class="our-team">
143+
<div class="info m-30px-tb">
144+
<h6>{{key}}</h6>
145+
<label>{{val.title}}</label>
146+
</div>
147+
<ul class="social-icons">
148+
{% if val.linkedin %}
149+
<li><a class="linkedin" href="https://www.linkedin.com/in/{{val.linkedin}}"><svg><use xlink:href="#linkedin"></use></svg></a></li>
150+
{% endif %}
151+
{% if val.twitter %}
152+
<li><a class="twitter" href="https://twitter.com/{{val.twitter}}"><svg><use xlink:href="#twitter"></use></svg></a></li>
153+
{% endif %}
154+
</ul>
155+
</div>
156+
</div>
157+
{% endfor %}
158+
</div>
159+
</div>
160+
</section>
161+
162+
127163
{% endblock %}

templates/pages/governance/about.html

+15
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,21 @@
118118
}
119119
%}
120120

121+
{%
122+
set team = {
123+
"Juan Caballero": {
124+
title: "Communications @ DIF / Spruce",
125+
linkedin: "juan-caballero",
126+
twitter: "by_caballero"
127+
},
128+
"Balázs Némethi": {
129+
title: "Operations at DIF / Taqanu",
130+
linkedin: "balazsnemethi",
131+
twitter: "nembal"
132+
}
133+
}
134+
%}
135+
121136

122137

123138
{% extends "governance.html" %}

0 commit comments

Comments
 (0)