26 lines
519 B
Plaintext
26 lines
519 B
Plaintext
---
|
|
layout: default
|
|
---
|
|
<!-- page.html -->
|
|
<div class="post">
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<p class="post-description">{{ page.description }}</p>
|
|
</header>
|
|
|
|
<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>
|