forked from GoogleCloudPlatform/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
executable file
·78 lines (59 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!--
Copyright 2020 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
{{ define "home" }}
{{ template "header" . }}
<div {{ with $.platform_css }} class="{{.}}" {{ end }}>
<span class="platform-flag">
{{$.platform_name}}
</span>
</div>
<main role="main" class="home">
<!-- The image at the top of the home page, displayed on smaller screens. -->
<div class="home-mobile-hero-banner d-lg-none"></div>
<div class="container-fluid">
<div class="row">
<!-- The image on the left of the home page, displayed on larger screens. -->
<div class="col-4 d-none d-lg-block home-desktop-left-image"></div>
<div class="col-12 col-lg-8">
<div class="row hot-products-row px-xl-6">
<div class="col-12">
<h3>Hot Products</h3>
</div>
{{ range $.products }}
<div class="col-md-4 hot-product-card">
<a href="/product/{{.Item.Id}}">
<img alt="" src="{{.Item.Picture}}">
<div class="hot-product-card-img-overlay"></div>
</a>
<div>
<div class="hot-product-card-name">{{ .Item.Name }}</div>
<div class="hot-product-card-price">{{ renderMoney .Price }}</div>
</div>
</div>
{{ end }}
</div>
<!-- Footer for larger screens. -->
<div class="row d-none d-lg-block home-desktop-footer-row">
<div class="col-12 p-0">
{{ template "footer" . }}
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer for smaller screens. -->
<div class="d-lg-none">
{{ template "footer" . }}
</div>
{{ end }}