forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
59 lines (58 loc) · 2.1 KB
/
home.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class="home">
<div class="row">
<div class="col-sm-12 home__block1">
<div class="home--square">
<div class="home--content">
<div class="home--content-wrapper">
<div class="home--content-inner">
<h1>{% trans "Promo & Sale" context "Homepage title" %}</h1>
<h2>{% trans "from the Northpole" context "Homepage title" %}</h2>
<a class="btn btn-secondary home__button" href="#">
{% trans "Shop now" context "Homepage action" %}
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6 home__block2">
<div class="home--square">
<div class="home--content">
<div class="home--content-wrapper">
<div class="home--content-inner">
<h1>{% trans "Size & Colours" context "Homepage title" %}</h1>
<a class="btn btn-secondary home__button" href="#">{% trans "Shop now" context "Homepage action" %}</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 home__block3">
<div class="home--square">
<div class="home--content">
<div class="home--content-wrapper">
<div class="home--content-inner">
<h1>{% trans "Digital Downloads" context "Homepage title" %}</h1>
<a class="btn btn-secondary home__button" href="#">{% trans "Shop now" context "Homepage action" %}</a>
</div>
</div>
</div>
</div>
</div>
</div>
{% if products %}
<div class="home__featured">
<h2 class="text-center">{% trans "Featured products" context "Homepage title" %}</h2>
<div class="row">
{% include "product/_items.html" %}
</div>
</div>
{% endif %}
<script type="application/ld+json">{{ webpage_schema|safe }}</script>
</div>
{% endblock %}