-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex_old.html
68 lines (62 loc) · 2.85 KB
/
index_old.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
layout: page
title: LombardPress
permalink: /index-old
---
<div class="home">
<p>LombardPress is the publishing component of a digital ecosystem designed to help faciliate a new kind of editing and publication of historical texts.</p>
<p>The primary focus of LombardPress is to faciliate the publication, dissemination, and study of scholastic commentaries and texts. LombardPress applications are designed to use and publish information made available via emerging scholarly standards and API. In particular, we rely on the <a href="http://scta.info">Scholastic Commentaries and Text Archive (SCTA)</a> ontology and database and the <a href="http://iiif.io">International Image Interoperability Framework</a> API. Because these applications are built to understand common standards, these publication resources are designed to be resuable for any data set that follows the same standards for data creation and dissimenation. For more information see our <a href="/about/">about page</a>.</p>
<hr/>
<div class="column-wrapper">
<div class="left-column">
<h2 class="page-heading">Most Recent Posts</h2>
<ul class="post-list">
{% for post in site.posts limit:5 %}
{% unless post.tags contains 'draft' %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
{% if post.description %}
<span class="post-desc">{{post.description}}</span>
{% endif %}
</li>
{% endunless %}
{% endfor %}
</ul>
</div>
<div class="right-column">
<h2 class="page-heading">Featured Posts</h2>
<ul class="post-list">
{% for post in site.posts %}
{% if post.tags contains 'featured' %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
{% if post.description %}
<span class="post-desc">{{post.description}}</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<div>
<hr/>
<h2 class="page-heading">All Posts</h2>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
<ul class="post-list">
{% for post in site.posts %}
{% unless post.tags contains 'draft' %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
{% if post.description %}
<span class="post-desc">{{post.description}}</span>
{% endif %}
</li>
{% endunless %}
{% endfor %}
</ul>
</div>
</div>