Skip to content

Commit 440d755

Browse files
author
delphidabbler
committed
Add programs.html
Page lists each program on the site, giving title, brief description and a link to a page with more information
1 parent 2522330 commit 440d755

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

programs.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Applications
3+
---
4+
<h1>
5+
Applications
6+
</h1>
7+
8+
<p>All the open source programs available from this site are listed below. Clicking the program's name takes you a page that provides detailed information about the program. Some detail pages also provide information about any major bugs, installation notes, screenshots etc.</p>
9+
10+
<p>Each program's page provides links that can be used to download the program and its source code.</p>
11+
12+
{% assign supported-programs = site.data.programs %}
13+
{% for program in supported-programs %}
14+
{% assign test = forloop.index | modulo: 2 %}
15+
{% if test <> 0 %}<div class="row">{% endif %}
16+
<section>
17+
<div class="col-sm-6">
18+
<div class="panel panel-default {% if program.mothballed %}panel-warning{% endif %}">
19+
<div class="panel-heading">
20+
<h3>{{ program.title }}</h3>
21+
</div>
22+
<div class="panel-body">
23+
<p>{{ program.summary | escape }}</p>
24+
</div>
25+
<div class="panel-footer text-right">
26+
<span class="btn btn-default"><a href="{{ program.more-info }}">More info</a></span>
27+
</div>
28+
</div>
29+
</div>
30+
</section>
31+
{% if test == 0 or forloop.last %}</div> <!-- ./row -->{% endif %}
32+
{% if test == 0 or forloop.last %}
33+
<!-- Clear the lg cols if their content doesn't match in height -->
34+
<div class="clearfix visible-sm-block"></div>
35+
{% endif %}
36+
{%endfor %}
37+

0 commit comments

Comments
 (0)