-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
135 lines (95 loc) · 3.18 KB
/
about.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
layout: default
title: About
---
<!-- Mission Section -->
<section class="mission">
<img src="{{ site.assets.sticker_en }}" alt="UNESCO Chair in Urban Landscape logo" class="sticker bottom-right">
<div class="mission-wrapper">
<div class="mission-content">
<h2 class="mission-approach">{% include approach.md %}</h2>
<div class="mission-axes">
<div>
<h3>Biodiversity</h3>
<p>{% include axis_biodiversity.md %}</p>
</div>
<div>
<h3>Social Inclusion</h3>
<p>{% include axis_inclusion.md %}</p>
</div>
<div>
<h3>Digitization</h3>
<p>{% include axis_digitization.md %}</p>
</div>
</div>
</div>
</div>
</section>
<!-- Numbers Section -->
<section class="numbers">
<h1 class="numbers-title">Overview</h1>
<div class="numbers-table">
<div class="numbers-number">
<p class="numbers-stat">20</p>
<h2 class="numbers-label">Years<br>active</h2>
</div>
<div class="numbers-number">
<p class="numbers-stat">14</p>
<h2 class="numbers-label">UNESCO<br>Studios</h2>
</div>
<div class="numbers-number">
<p class="numbers-stat">3</p>
<h2 class="numbers-label">Research<br>axes</h2>
</div>
<div class="numbers-number">
<p class="numbers-stat">900</p>
<h2 class="numbers-label">Network<br>partners</h2>
</div>
<div class="numbers-number">
<p class="numbers-stat">17</p>
<h2 class="numbers-label">Team<br>members</h2>
</div>
<div class="numbers-number">
<p class="numbers-stat">8</p>
<h2 class="numbers-label">Nationalities<br>present</h2>
</div>
</div>
</section>
<!-- Question section -->
<section class="question">
<h2 class="question-statement">How can we help you?</h2>
<div class="question-content">
{% assign sorted_posts = site.services | sort: 'order' %}
{% for post in sorted_posts %}
<hr>
<button class="question-accordion">{{ post.question }}</button>
<detail class="question-panel">
<div class="question-answer">
{{ post.content }}
</div>
</detail>
{% endfor %}
<hr>
</div>
</section>
<!-- Team Section -->
<section class="team-section">
<div class="archive team">
{% for post in site.team %}
<li>
<article class="article">
<img class="image" src="{{ post.portrait }}" loading="lazy">
<h2><a href="{{ post.url }}">{{ post.name }} ({{ post.pronouns }})</a></h2>
<p>{{ post.position }}</p>
</article>
</li>
{% endfor %}
</div>
</section>
<!-- Vision Section -->
<section class="vision">
<h1 class="vision-text">
<span>We believe urban landscapes</span>
<span>are best made together.</span>
</h1>
</section>