-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackgrounds.html
42 lines (42 loc) · 1.43 KB
/
backgrounds.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
title: Backgrounds
layout: default
---
<main role="main">
<!--- Main -->
<section class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading">Backgrounds</h1>
<p class="lead text-muted">A gallery of Fortune Street backgrounds.</p>
</div>
</section>
<!--- Maps -->
<div class="album">
<div class="container">
<div class="row">
{%- for background in site.data.backgrounds -%}
<div class="col-md-4 mb-5">
<div class="card h-100">
<img class="card-img-top" src="{%- include renderBackground.liquid background=background.file -%}" style="object-fit: fill;"></a>
<div class="card-body">
<h4 class="card-title">{{ background.file }}</h4>
<p class="card-text">{{ background.name }}</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">{{ background.bgm }}</li>
{%- if background.icon -%}
<li class="list-group-item">{{ background.icon }}</li>
{%- endif -%}
</ul>
{%- if background.download -%}
<div class="card-footer">
<button class="btn btn-primary" onclick="GitZip.zipRepo('{{ background.download }}');">Download</button>
</div>
{%- endif -%}
</div>
</div>
{%- endfor -%}
</div>
</div>
</div>
</main>