forked from rustfoundation/foundation.rust-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.njk
34 lines (30 loc) · 1.16 KB
/
about.njk
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
---
layout: layouts/base.njk
permalink: /about/
eleventyNavigation:
key: About
order: 2
---
<section class="container">
<h1>We are the Rust Foundation</h1>
<div>The Rust Foundation is run by a small team of full time staff, and governed by a Board of Directors who represent the Rust project and our member companies.</div>
</section>
<section class="container staff">
<h1>Staff</h1>
{% set peoplelist = collections.staff %}
{% include "peoplelist.njk" %}
</section>
<section class="container board">
<h1>Board of Directors</h1>
{% set peoplelist = collections.board %}
{% include "peoplelist.njk" %}
</section>
<section class="container">
<h1>Board meeting minutes</h1>
<div>Minutes of the meetings of the Foundation Board of Directors will be published here. The Board usually meets on the second Tuesday of each month.</div>
<ul>
<li><a href="/static/minutes/2021-05-11-minutes.pdf">May 2021 Board Meeting</a></li>
<li><a href="/static/minutes/2021-03-09-minutes.pdf">March 2021 Board Meeting</a></li>
<li><a href="/static/minutes/2021-02-09-minutes.pdf">February 2021 Board Meeting</a></li>
</ul>
</section>