Skip to content

Commit 9a58bdc

Browse files
authored
Copy updates, add steering committee cta to about page (#393)
1 parent 5acde9a commit 9a58bdc

8 files changed

Lines changed: 35 additions & 19 deletions

File tree

_data/about.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- title: "Open source"
2-
description: "Independent, free/libre and open-source software"
2+
description: "Independent, free/libre, and open-source software"
33
icon: /img/assets/icon-about-open-source.svg
44

55
- title: "Functional"
@@ -15,7 +15,7 @@
1515
icon: /img/assets/icon-about-resources.svg
1616

1717
- title: "Friendly"
18-
description: "An inclusive, welcoming and safe environment"
18+
description: "An inclusive, welcoming, and safe environment"
1919
icon: /img/assets/icon-about-friendly.svg
2020

2121
- title: "Modular"

_data/cta.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ blogDescription: If you want to share something about a library or Scala topics
99

1010
conductTitle: Scala Code of Conduct
1111
conductDescription: We are committed to providing a friendly, safe and welcoming environment for all, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, sexual identity and orientation, or other such characteristics.
12+
13+
steeringTitle: Steering Committee
14+
steeringDescription: The Typelevel Steering Committee is a group of volunteers that govern Typelevel.

_data/description.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
aboutTitle: About
2-
aboutDescription: Learn more about the organization. Here you can see the main goals we are pursuing.
2+
aboutDescription: Learn more about the organization, including our main goals, code of conduct, and governance.
33

44
projectsTitle: Projects
55
projectsDescription: Our projects cover a wide range of domains, from general functional programming to tooling.
66

77
blogTitle: Latest blog posts
8-
blogDescription: We show how to use our libraries in your code, provide examples, collect learning resources and explore implementation details.
8+
blogDescription: In addition to org-level announcements, here we show you how to use our libraries in your code, provide examples, collect learning resources, and explore implementation details.
99

1010
eventsTitle: Events
1111

_data/nav-scala.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33

44
- title: License
55
url: /license
6+
7+
- title: Steering Committee
8+
url: /steering-committee

_includes/_cta-steering.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<section id="section-blog" class="section-large">
2+
<div class="container">
3+
<div class="section-header">
4+
<h2><span>{{site.data.cta.steeringTitle}}</span></h2>
5+
<p>{{site.data.cta.steeringDescription}}</p>
6+
{% for item in site.data.nav-scala %}
7+
{% if item.title == "Steering Committee" %}
8+
<p><br />
9+
<a class="button button-primary" href="{{item.url | relative_url }}">About the Committee</a>
10+
</p>
11+
{% endif %}
12+
{% endfor %}
13+
</div>
14+
</div>
15+
</section>

_includes/_section-about.html

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,8 @@
44
<h2><span>{{site.data.description.aboutTitle}}</span></h2>
55
<p>{{{site.data.description.aboutDescription}}</p>
66
</div>
7-
<div class="about-list">
8-
{% for item in site.data.about %}
9-
<div class="about-item" data-aos="fade-down">
10-
<img src="{{ site.baseurl }}{{ item.icon }}" title="{{ item.title }}" />
11-
<h3>{{item.title}}</h3>
12-
<p>{{item.description}}</p>
13-
</div>
14-
{% endfor %}
15-
</div>
167
<div class="section-cta">
17-
<a class="button button-primary" href="{{ site.baseurl }}/about/">See about</a>
8+
<a class="button button-primary" href="{{ site.baseurl }}/about/">About Typelevel</a>
189
</div>
1910
</div>
2011
</section>

about/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@ <h3>{{item.title}}</h3>
3232
</div>
3333
</div>
3434
</div>
35-
{% include _cta-conduct.html %}
35+
{% include _cta-conduct.html %}
36+
<br /><br /><br />
37+
{% include _cta-steering.html %}
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
layout: page
3-
title: Typelevel Steering Committee
2+
layout: coc
3+
title: "Typelevel Steering Committee"
4+
permalink: /steering-committee.html
45
---
56

6-
The Typelevel Steering Committee is the group of volunteers that
7-
governs Typelevel. The membership is kept in [the Typelevel
7+
The Typelevel Steering Committee is a group of volunteers that
8+
govern Typelevel. The membership is kept in [the Typelevel
89
Governance repository][steering-committee] and described in the
910
[Typelevel Charter][charter].
1011

1112
[steering-committee]: https://github.com/typelevel/governance/blob/main/STEERING-COMMITTEE.md
1213
[charter]: https://github.com/typelevel/governance/blob/main/CHARTER.md
14+

0 commit comments

Comments
 (0)