-
-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy path_section-projects.html
More file actions
43 lines (43 loc) · 1.63 KB
/
_section-projects.html
File metadata and controls
43 lines (43 loc) · 1.63 KB
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
35
36
37
38
39
40
41
42
43
<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 class="projects-list">
{% assign projects = site.data.projects | where:'core', true %}
{% for project in projects limit:3 %}
<a href="{{ project.github }}" class="project-item">
<div class="project-item-content">
<div>
<img src="{{ site.baseurl }}/img/assets/icon-project.svg" alt="">
<h3>{{ project.title }}</h3>
</div>
<p>{{ project.description }}</p>
</div>
{% if project.category %}
<div class="project-item-tag">
<p>{{ project.category }}</p>
</div>
{% endif %}
<div class="project-membership">
{% if project.affiliate %}
<img src="https://img.shields.io/badge/typelevel-affiliate-FFB4B5" alt="Typelevel affiliate" />
{% else %}
<img src="https://img.shields.io/badge/typelevel-member-FF6169" alt="Typelevel member" />
{% endif %}
</div>
</a>
{% 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>