-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathprojects.html
39 lines (37 loc) · 1.08 KB
/
projects.html
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
---
layout: default
title: Projects
menu_entry: Projects
---
<div class="container-fluid">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h1>Follow Our Progress</h1>
<p>
These projects represent the core of the radanalytics.io community's efforts.
There are several different types of projects represented here, but all are
focused on improving your experiences creating insightful data driven
applications.
</p>
<p>
We invite you to take a look, test drive everything, and hopefully join us
by contributing a comment, issue, or code!
</p>
</div>
</div>
{% assign sorted_projects = site.projects | sort: 'weight' %}
{% for project in sorted_projects %}
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h2>
{{ project.title }}
{% assign split_labels = project.labels | split: ',' %}
{% for label in split_labels %}
<span class="badge">{{ label }}</span>
{% endfor %}
</h2>
{{ project.content }}
</div>
</div>
{% endfor %}
</div>