forked from typelevel/typelevel.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_section-projects.html
More file actions
24 lines (24 loc) · 1006 Bytes
/
Copy path_section-projects.html
File metadata and controls
24 lines (24 loc) · 1006 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
<section id="section-projects" class="section-large">
<div class="container">
<div class="section-header">
<h2><span>{{site.data.description.projectsTitle}}</span></h2>
<p>{{site.data.description.projectsDescription}}</p>
</div>
<div id="homeProjects" class="projects-list">
{% assign names = "Cats|Cats-Effect|fs2|http4s" | split: "|" %}
{% assign projects = site.data.projects | where_exp: "project", "names contains project.title" %}
{% for project in projects %}
{% include _project_card.html %}
{% endfor %}
</div>
<div class="section-cta">
<a class="button button-primary" href="{{ site.baseurl }}/projects/">See all projects</a>
</div>
<p class="sub-cta">Are you interested in submitting your projects to the Typelevel Ecosystem?
{% for item in site.data.nav-social %}
{% if item.title == "Email" %}
<a href="{{item.url}}">Contact us</a></p>
{% endif %}
{% endfor %}
</div>
</section>