-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathjournal.html
More file actions
29 lines (23 loc) · 923 Bytes
/
journal.html
File metadata and controls
29 lines (23 loc) · 923 Bytes
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
---
layout: default
---
<article class="journal">
<header class="post-header">
<div class="back"><a href="/journals/">Journals</a> /</div>
<h1 class="post-title">{{ page.title | escape }}</h1>
{% if page.publisher %}
{% assign publisher = site.publishers | find: "slug", page.publisher %}
<h2>Published by {% if publisher %}<a href="{{ publisher.url }}">{{ publisher.title }}</a>{% else %}{{ page.publisher }}{% endif %}</h2>
{% endif %}
{% if page.external_url %}
{%- comment -%}buggytrack.js uses the fact that these are h3{%- endcomment -%}
<h3>Find the periodical <a target="_blank" href="{{ page.external_url }}">online here</a>.</h3>
{% endif %}
</header>
<div class="post-content">
{{ content }}
<h4>Articles Featured in our Library:</h4>
{% assign series = site.content | where: "journal", page.slug %}
{% include content_list.html contents=series keep_rejects="true" %}
</div>
</article>