-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsoftware.html
39 lines (37 loc) · 1.14 KB
/
software.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: Open Source Software
---
<table class="table">
<tbody>
{% for item in site.data.software %}
{% assign sw = item[1] %}
<tr>
{% if sw.image %}
<td class = "softwareimage" align=center>
<img alt="{{ sw.title }}"
title="{{ sw.title }}"
src="{{ site.baseurl }}/{{ sw.image }}"
height=170>
</td>
<td class="software">
{% else %}
<td class="software" colspan="2">
{% endif %}
<span class="softtitle">
<strong><big><a href="{{ sw.link|escape }}">{{ sw.title|escape }}</a></strong></big>.
</span><br />
<span class="authors">
<strong>{{ sw.authors|escape }}</strong>.
</span>
{%- if sw.description %}
<span class="note">
<br />
{{ sw.description|escape }}
</span>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>