forked from THDCMustang/thdcmustang.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublication.html
More file actions
30 lines (29 loc) · 1.31 KB
/
publication.html
File metadata and controls
30 lines (29 loc) · 1.31 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
---
title: Publication
layout: base
permalink: /publication/
---
<div class="thdc-grid">
<div class="thdc-whole-page">
<h1>Publication</h1>
<p>Download latest updates from the THDC, Mustang.</p>
<ul class="thdc-unstyled-list">
{% for page in site.pages reversed %}
{% if page.layout == 'publication' and page.status == 'active' %}
{% unless page.title contains 'Publication Title' %}{% comment %} Filter out the example page {% endcomment %}
<li>
<h2>
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}" title="{{ page.title }}">{{ page.title }}</a>
</h2>
<li><span><strong>Filename:</strong></span> <span>{{ page.filename }}</span></li>
<li><span><strong>Summary:</strong></span> <span>{{ page.summary }}</span></li>
<li><span><strong>Date Posted:</strong></span> <span>{{ page.date_posted }}</span></li>
<li><span><strong>Filesize:</strong></span> <span>{{ page.filesize }}</span></li>
<li><span><strong>Download Link:</strong></span> <span><a href="{{ page.download_link | prepend: site.baseurl }}">Click here to download</a></span></li>
</li>
{% endunless %}
{% endif %}
{% endfor %}
</ul>
</div>
</div>