1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 06:37:17 +00:00

Create initial Jekyll Site

This commit is contained in:
2018-03-11 19:42:19 -05:00
parent f0a34bb273
commit 10f06999ed
22 changed files with 568 additions and 11 deletions

20
_layouts/home.html Normal file
View File

@@ -0,0 +1,20 @@
---
layout: default
---
<div class="home">
<div class="container"><h1>{{ page.title | default: site.title }}</h1>
{%- if site.data.downloads -%}
<p>Download Latest Version: <strong>{{ site.data.downloads.version }}</strong></p>
<div class="downloads" style="display: flex; flex-wrap: wrap;">
{%- for download in site.data.downloads.files -%}
<a class="download" href="{{ download.link }}">
<svg class="svg-icon" viewBox="0 0 26 28"><use xlink:href="{{ '/assets/icons.svg' | relative_url }}#{{ download.icon }}"></use></svg><span>{{ download.name }}</span>
</a>
{%- endfor -%}
</div>
{%- endif -%}
</div>
{{ content }}
</div>