-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstore.html
More file actions
63 lines (59 loc) · 2.29 KB
/
Copy pathstore.html
File metadata and controls
63 lines (59 loc) · 2.29 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
title: Store
layout: page
full-width: true
after-content: []
css:
- /assets/css/store.css
js:
- /assets/js/store.js
---
{% assign products = site.data.store_products %}
{% assign featured_product = false %}
{% if products.size == 1 %}
{% assign featured_product = true %}
{% endif %}
<section class="storefront" id="Storefront">
<div class="container py-lg-2">
<header class="storefront-intro mx-auto mb-4 text-center">
<h1 class="storefront-kicker mb-2">
<i class="fa-solid fa-bag-shopping" aria-hidden="true"></i>
LizardByte Store
</h1>
<h2 class="display-6 fw-bolder mb-3">Tools built for better streaming</h2>
<p class="lead text-muted mb-0">
Purchase LizardByte products and help fund continued development across Sunshine and our other
open-source projects.
</p>
</header>
<ul class="storefront-assurance list-unstyled" aria-label="Store information">
<li>
<i class="fa-solid fa-code" aria-hidden="true"></i>
<span>Built by LizardByte</span>
</li>
<li>
<i class="fa-solid fa-shield-halved" aria-hidden="true"></i>
<span>Trusted checkout providers</span>
</li>
<li>
<i class="fa-solid fa-life-ring" aria-hidden="true"></i>
<span>Documentation and support</span>
</li>
</ul>
{% if products and products.size > 0 %}
<div class="row g-4 justify-content-center">
{% for product in products %}
<div class="{% if featured_product %}col-12 col-xl-10{% else %}col-12 col-md-6 col-xl-4{% endif %}">
{% include store-product-card.html product=product featured=featured_product %}
</div>
{% endfor %}
</div>
{% else %}
<div class="storefront-empty">
<i class="fa-solid fa-box-open fa-2x mb-3" aria-hidden="true"></i>
<h3 class="h4 fw-bold">More products are on the way</h3>
<p class="text-muted mb-0">Check back soon for new LizardByte products.</p>
</div>
{% endif %}
</div>
</section>