Neues Seitenlayout "project" hinzugefügt

This commit is contained in:
bmen 2020-10-10 09:46:49 +02:00
parent 56907c04cf
commit 98c49df896
1 changed files with 32 additions and 0 deletions

32
_layouts/project.html Normal file
View File

@ -0,0 +1,32 @@
---
layout: default
---
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="post">
{{ content }}
</div>
</div>
<div class="col-lg-3 mt-lg-5">
<div class="project-meta mt-lg-5">
{% if page.client %}
<div><label>Auftraggeber:</label> {{ page.client }}</div>
{% endif %}
{% if page.project-launch %}
<div><label>Veröffentlichung:</label> {{ page.project-launch }}</div>
{% endif %}
{% if page.description %}
<div class="description"><label>Kurzbeschreibung:</label><br />{{ page.description }}</div>
{% endif %}
{% if page.tools %}
<div>{{ page.tools }}</div>
{% endif %}
{% if page.client-url %}
<div><a class="btn btn-outline-primary" href="{{ page.client-url }}" target="_blank">Website <i class="fas fa-external-link-alt"></i></a></div>
{% endif %}
</div>
</div>
</div>
</div>