27 lines
517 B
HTML
27 lines
517 B
HTML
---
|
|
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.html %}
|
|
{%- endif -%}
|
|
</div>
|