forked from typelevel/typelevel.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorganization.html
More file actions
38 lines (36 loc) · 1.02 KB
/
Copy pathorganization.html
File metadata and controls
38 lines (36 loc) · 1.02 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
---
layout: page
title: Projects
permalink: /projects/organization/
---
<div id="section-page">
<div class="container">
<div class="masthead-page">
<h1><span>{{ page.title }}</span></h1>
<p>{{site.data.description.projectsDescription}}</p>
{% include _tab-projects.html %}
</div>
<div class="projects-list">
{% for project in site.data.projects %}
{% if project.affiliate != true %}
<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 %}
{% include _project_membership.html %}
</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% include _cta-projects.html %}