-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
34 lines (30 loc) · 1.18 KB
/
index.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
---
layout: default
---
<div class="home">
<h2 class="page-heading">
Welcome to Stenodict.
</h2>
<p>
Below you will find a set of free, open source stenographic dictionaries to help you with the task of evolving beyond a traditional keyboard. Feel free to contribute back with your own dictionaries.
</p>
<h2 class="page-heading">Dictionaries</h2>
<table class="table table-striped table-bordered table-hover">
<tbody>
{% assign sortedDicts = site.dictionaries | sort:"title" %}
{% for dictionary in sortedDicts %}
<tr style="cursor: pointer">
<td class="row-link-wrapper">
<a class="post-link row-link" href="{{ dictionary.url | prepend: site.baseurl }}"></a>
<td>
<h4 class="dictionary-name">{{ dictionary.title }}</h4>
<small class="author"> by {{ dictionary.author }}</small><br/>
{{ dictionary.what }}
<span class="glyphicon glyphicon-chevron-right pull-right text-muted"/>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<p class="rss-subscribe">Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>