Added GitHub action to check for broken links in repo before commit, ignoring files with liquid tags since these were not yet processed and also README since some sites created from this template doesn't have valid urls anymore. Fixed some broken links in repo. --------- Signed-off-by: George Araújo <george.gcac@gmail.com>
25 lines
500 B
Plaintext
25 lines
500 B
Plaintext
---
|
|
layout: default
|
|
---
|
|
<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>
|