forked from typelevel/typelevel.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (108 loc) · 3.8 KB
/
Copy pathindex.html
File metadata and controls
113 lines (108 loc) · 3.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
layout: default
title: Projects
class: projects-page
---
<div class="section projects-core js-fade-in">
<h2>Libraries</h2>
<p>Let the Scala compiler work for you. We provide type classes, instances, conversions, testing, supplements to the standard library, and much more.</p>
{% for project in site.projects %}
<!-- Core Projects / Featured (have the option core: true) -->
{% if project.core %}
<div class="projects__project expandable-core">
<div class="projects__project-header">
<a href="{{ project.github }}">
<h4>
<span class="ico-repo"></span>
{{ project.title }}
</h4>
</a>
{% if project.permalink %}
<a class="btn pull-right" href="{{ project.permalink }}">More</a>
{% endif %}
</div>
<div class="projects__project-body">
<span class="tag">{{ project.category }}</span>
<p class="projects__project-body-description">{{ project.description }}</p>
{% if project.extensions %}
<div class="projects__project-body-extensions">
<p>Extensions and companions for <strong>{{ project.title }}</strong></p>
<div class="list">
{% for extension in project.extensions %}
<div class="list__item">
<a href="{{ extension.github }}">
<span class="ico-repo"></span><h6>{{ extension.title }}</h6>
</a>
<span class="list__item-slug">{{ extension.description }}</span>
</div>
{% endfor %}
</div>
</div>
{% endif %}
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="section projects">
<div class="projects__container" data-columns>
{% for project in site.projects %}
{% unless project.core %}
<div class="projects__project expandable js-fade-in">
<div class="projects__project-header">
<a href="{{ project.github }}">
<h4><span class="ico-repo"></span>{{ project.title }}</h4>
</a>
{% if project.permalink %}
<a class="btn pull-right" href="{{ project.permalink }}">More</a>
{% endif %}
</div>
<div class="projects__project-body">
<span class="tag">{{ project.category }}</span>
<p>{{ project.description }}</p>
</div>
</div>
{% endunless %}
{% endfor %}
</div>
</div>
<div class="section macros js-fade-in">
<div class="projects__project incubator">
<div class="projects__project-header">
<h4>Incubator Projects</h4>
</div>
<div class="projects__project-body">
<span class="tag">Newly joined projects</span>
<div class="list">
{% for incubator in site.data.incubator %}
<div class="list__item">
<a href="{{ incubator.github }}">
<span class="ico-repo"></span><h6>{{ incubator.title }}</h6>
</a>
<span class="list__item-slug">{{ incubator.description }}</span>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="section macros js-fade-in">
<div class="projects__project macros">
<div class="projects__project-header">
<h4>Macros and Compiler Plugins</h4>
</div>
<div class="projects__project-body">
<span class="tag">Extending the language</span>
<div class="list">
{% for macro in site.data.macros %}
<div class="list__item">
<a href="{{ macro.github }}">
<span class="ico-repo"></span><h6>{{ macro.title }}</h6>
</a>
<span class="list__item-slug">{{ macro.description }}</span>
</div>
{% endfor %}
</div>
</div>
</div>
</div>