-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (58 loc) · 2.11 KB
/
index.html
File metadata and controls
74 lines (58 loc) · 2.11 KB
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
69
70
71
72
73
74
---
layout: default
---
<div class="home">
<div class="container-fluid">
<div class="row" style="margin-bottom: 40px;">
<div class="col-md-3">
<img src="/assets/img/under-construction.svg"/>
</div>
<div class="col-md-9">
<h1 class="page-heading">OpenDCS - Under Construction</h1><br/>
<p>
This project is in a very early stage of development, as is this site. Some of
the content contained here could change, or disappear.
</p>
</div>
</div>
</div>
{% for post in paginator.posts %}
<article class="post-preview">
{% if post.categories[0] != 'doc' %}
{% if post.external-url %}
<h1 class="yellow">
<a href="{{ post.external-url }}">{{ post.title }}</a>
<a class="anchor" href="{{ post.url }}"><i class="icon-anchor"></i></a>
</h1>
{% else %}
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h1 class="yellow"><a href="{{ post.url }}">{{ post.title }}</a></h1>
{% endif %}
{{ post.content | split:'<!--break-->' | first }}
{% if post.content contains '<!--break-->' %}
<a href="{{ post.url }}">read more…</a>
{% endif %}
{% endif %}
</article>
{% endfor %}
{% if paginator.total_pages > 1 %}
<div class="postnavigation">
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="prev left" href="/">← Newer</a>
{% else %}
<a class="prev left" href="/page{{paginator.previous_page}}/">← Newer</a>
{% endif %}
{% else %}
<span class="nope left">← Newer</span>
{% endif %}
<span class="pages">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a class="next right" href="/page{{paginator.next_page}}/">Older →</a>
{% else %}
<span class="nope right">Older →</span>
{% endif %}
</div>
{% endif %}
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>