website/_layouts/project.html
Ivan Bushchik 40ae41dc60
Reinitial commit (rewriting history)
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-09-04 17:16:49 +03:00

21 lines
664 B
HTML

---
layout: default
---
<article class="post">
{% if page.external-url %}
<h1>
<a href="{{ page.external-url }}">{{ page.title }}{% if page.description %} - {{ page.description }} {% endif %}</a>
<a class="anchor" href="{{ page.url }}"><i class="icon-anchor"></i></a>
</h1>
{% else %}
<h1><a style="font-size: 16pt" href="{{ page.url }}">{{ page.title }}{% if page.description %} - {{ page.description }} {% endif %}</a></h1>
{% endif %}
{% if page.project-url %}
<h3 class="post-content project-url">URL: <a href="{{ page.project-url }}">{{ page.project-url }}</a></h3>
{% endif %}
<div class="post-content">{{ content }}</div>
</article>