forked from skyuk/bskyb.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopensource.html
More file actions
21 lines (20 loc) · 912 Bytes
/
Copy pathopensource.html
File metadata and controls
21 lines (20 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
title: Open Source
---
<h3>We're contributing back to the open source community</h3>
<p class="lead text--instructions">Our open source projects</p>
{% for project in site.data.projects %}
{% capture project_url %}//github.com/{{project.author}}/{{project.name}}{% endcapture %}
{% cycle '<ul class="github clearfix">', '', '', '' %}
<li class="skycom-3">
<div class="github-thumbnail">
<span class="mega-octicon octicon-repo"></span>
<a class="author" href="//github.com/{{project.author}}">{{project.author}}</a>
<span>/</span>
<a class="project" href="{{project_url}}">{{project.name}}</a>
<a class="project" href="{{project_url}}"><h4><i>{{project.description}}</i></h4></a>
</div>
</li>
{% cycle '', '', '', '</ul>' %}
{% endfor %}