-
-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathabout.template.html
More file actions
34 lines (31 loc) · 928 Bytes
/
about.template.html
File metadata and controls
34 lines (31 loc) · 928 Bytes
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
@:embed(/templates/main.template.html)
<div class="bulma-section bulma-content bulma-container bulma-is-max-desktop">
${cursor.currentDocument.content}
<h2 id="board-of-directors">
<a class="anchor-link" href="#board-of-directors">
@:svg(fa-link)
</a>
Board of Directors
</h2>
<div class="bulma-grid bulma-is-col-min-12">
@:for(board)
<div class="bulma-cell">
@:include(/templates/bio.template.html) { render-title = true }
</div>
@:@
</div>
<h2 id="foundation-sponsors">
<a class="anchor-link" href="#foundation-sponsors">
@:svg(fa-link)
</a>
Foundation Sponsors
</h2>
<div class="bulma-columns bulma-is-multiline bulma-is-align-items-center">
@:for(sponsors)
<div class="bulma-column bulma-is-narrow bulma-has-text-centered">
<a href="${_.url}"><img class="sponsor" src="@:target(_.logo)" /></a>
</div>
@:@
</div>
</div>
@:@