Skip to content

Commit 35ecf10

Browse files
committed
Fix margins in team pages, move core-team to a single toplevel core team
1 parent 2d0d5fe commit 35ecf10

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed

data/governance.yml

+15-18
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
teams:
2-
- id: core-team
2+
- id: core
33
name: Core Team
44
description: The Core team and its Project Leader govern the project.
5-
subteams:
6-
- id: core
7-
name: Core
8-
description: The Core team is composed of co-opted, long-term and significant
9-
contributors to the Rocq project and its scientific underpinnings.
10-
It is responsible for the Rocq Prover and all official Rocq Projects.
11-
default_role: Core developer
12-
dev_meeting:
13-
date: Every Tuesday
14-
time: 4:00 PM CET (see wiki) Open to all
15-
calendar: https://github.com/coq/coq/wiki/Coq-Calls
16-
link: https://rendez-vous.renater.fr/coq-call
17-
notes: https://github.com/coq/coq/wiki/Coq-Calls
18-
members:
19-
- name: Matthieu Sozeau
20-
github: mattam82
21-
role: Project Leader
5+
The Core team is composed of co-opted, long-term and significant
6+
contributors to the Rocq project and its scientific underpinnings.
7+
It is responsible for the Rocq Prover and all official Rocq Projects.
8+
default_role: Core developer
9+
dev_meeting:
10+
date: Every Tuesday
11+
time: 4:00 PM CET (see wiki) Open to all
12+
calendar: https://github.com/coq/coq/wiki/Coq-Calls
13+
link: https://rendez-vous.renater.fr/coq-call
14+
notes: https://github.com/coq/coq/wiki/Coq-Calls
15+
members:
16+
- name: Matthieu Sozeau
17+
github: mattam82
18+
role: Project Leader
2219
- id: community
2320
name: Community
2421
description: The Community team is responsible for managing forums, social media, and community events.

src/rocqproverorg_frontend/pages/governance_team.eml

+4-4
Original file line numberDiff line numberDiff line change
@@ -134,24 +134,24 @@ Layout.render
134134
</div>
135135
</div>
136136
<div class="bg-background dark:bg-dark-background">
137-
<div class="py-8">
137+
<div class="py-2">
138138
<div class="container-fluid">
139139
<% (match t.dev_meeting with | None -> () | Some dev_meeting -> %>
140-
<h2 class="font-bold gradient mb-6 mt-12 md:mt-16 text-4xl text-title dark:text-dark-title">Dev Meeting</h2>
140+
<h2 class="font-bold gradient mb-6 mt-6 md:mt-8 text-4xl text-title dark:text-dark-title">Dev Meeting</h2>
141141
<%s! render_dev_meeting dev_meeting "text-white mb-6" %>
142142
<% ); %>
143143

144144
<% (match List.length t.members with | 0 -> () | _ -> %>
145145
<div class="">
146-
<h2 class="font-bold gradient mb-6 mt-12 md:mt-16 text-4xl text-title dark:text-dark-title">People</h2>
146+
<h2 class="font-bold gradient mb-6 mt-6 md:mt-8 text-4xl text-title dark:text-dark-title">People</h2>
147147
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-12 mb-4">
148148
<%s! t.members |> List.map (fun (member : Data.Governance.Member.t) -> render_team_member ~default_role:t.default_role member ) |> String.concat "\n" %>
149149
</div>
150150
</div>
151151
<% ); %>
152152

153153
<% (match List.length t.subteams with | 0 -> () | _ -> %>
154-
<h2 class="font-bold gradient mb-6 mt-12 md:mt-16 text-4xl text-title dark:text-dark-title">Teams</h2>
154+
<h2 class="font-bold gradient mb-6 mt-6 md:mt-8 text-4xl text-title dark:text-dark-title">Teams</h2>
155155
<div class="flex flex-col gap-12">
156156
<% t.subteams |> List.iter (fun (team : Data.Governance.team) -> %>
157157
<%s! render_subteam team %>

0 commit comments

Comments
 (0)