Initial commit

This commit is contained in:
2022-05-12 15:29:25 +02:00
commit 110eea369b
15 changed files with 334 additions and 0 deletions

View File

View File

@@ -0,0 +1,9 @@
<div class="no-screenshot clickable">
<a href="https://{{ item.source_url }}">
<div class="vertical-center">
<div class="horizontal-center">
<span class="no-screenshot-pound">#</span>
</div>
</div>
</a>
</div>

View File

@@ -0,0 +1,12 @@
<div class="horizontal-flex project-row">
{{ template_if_empty item.screenshot layout/templates/no_screenshot.html layout/templates/screenshot.html }}
<div class="vertical-flex">
<h2>{{ item.title }}</h2>
<p>{{ item.description }}</p>
<ul>
{{ template_if_empty item.website layout/templates/empty.html layout/templates/project_website.html }}
<li><a href="https://{{ item.source_url }}">Code</a></li>
</ul>
</div>
</div>

View File

@@ -0,0 +1 @@
<li><a href="https://{{ item.website }}">Website</a></li>

View File

@@ -0,0 +1,5 @@
<div>
<a href="https:{{ item.source_url }}" target="_blank">
<img class="screenshot clickable" src="{{ item.screenshot }}" />
</a>
</div>