Commit 35ecf10 1 parent 2d0d5fe commit 35ecf10 Copy full SHA for 35ecf10
File tree 2 files changed +19
-22
lines changed
src/rocqproverorg_frontend/pages
2 files changed +19
-22
lines changed Original file line number Diff line number Diff line change 1
1
teams :
2
- - id : core-team
2
+ - id : core
3
3
name : Core Team
4
4
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
22
19
- id : community
23
20
name : Community
24
21
description : The Community team is responsible for managing forums, social media, and community events.
Original file line number Diff line number Diff line change @@ -134,24 +134,24 @@ Layout.render
134
134
</div>
135
135
</div>
136
136
<div class="bg-background dark:bg-dark-background">
137
- <div class="py-8 ">
137
+ <div class="py-2 ">
138
138
<div class="container-fluid">
139
139
<% (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>
141
141
<%s! render_dev_meeting dev_meeting "text-white mb-6" %>
142
142
<% ); %>
143
143
144
144
<% (match List.length t.members with | 0 -> () | _ -> %>
145
145
<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>
147
147
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-12 mb-4">
148
148
<%s! t.members |> List.map (fun (member : Data.Governance.Member.t) -> render_team_member ~default_role:t.default_role member ) |> String.concat "\n" %>
149
149
</div>
150
150
</div>
151
151
<% ); %>
152
152
153
153
<% (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>
155
155
<div class="flex flex-col gap-12">
156
156
<% t.subteams |> List.iter (fun (team : Data.Governance.team) -> %>
157
157
<%s! render_subteam team %>
You can’t perform that action at this time.
0 commit comments