-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.liquid
More file actions
35 lines (30 loc) · 734 Bytes
/
page.liquid
File metadata and controls
35 lines (30 loc) · 734 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
29
30
31
32
33
34
35
---
layout: default
---
{% if page._styles %}
<!-- Page/Post style -->
<style type="text/css">
{{ page._styles }}
</style>
{% endif %}
<div class="post">
<header class="post-header">
<h1 class="post-title {% if page.title_class %}{{ page.title_class }}{% endif %}">{{ page.title }}</h1>
<p class="post-description">{{ page.description }}</p>
</header>
{% if page.show_divider %}
<hr>
{% endif %}
<article>
{{ content }}
</article>
{% if page.related_publications %}
<h2>References</h2>
<div class="publications">
{% bibliography --cited_in_order %}
</div>
{% endif %}
{% if site.giscus and page.giscus_comments %}
{% include giscus.liquid %}
{% endif %}
</div>