microservices-demo/src/frontend/templates/home.html

65 lines
2.0 KiB
HTML
Executable File

<!--
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">
<section class="jumbotron text-center mb-0 h-jumbotron">
<div class="container">
<img src="/static/icons/Hipster_HeroLogo.svg" alt="icon" class="icon search-icon" />
</div>
</section>
<div class="h-grid py-5 bg-light">
<div class="container">
<div class="row h-row">
<img src="/static/icons/Hipster_HotProducts.svg" alt="icon" class="icon search-icon" />
</div>
<div class="row">
{{ range $.products }}
<div class="col-md-4">
<div class="h-card card mb-4 box-shadow">
<a href="/product/{{.Item.Id}}">
<img alt="" style="width: 100%; height: auto;" src="{{.Item.Picture}}">
<div class="card-hover"></div>
</a>
<div class="card-body h-card-body">
<h5 class="card-title h-card-title">
{{ .Item.Name }}
</h5>
<div class="d-flex justify-content-center align-items-center">
<small class="text-muted">
{{ renderMoney .Price }}
</small>
</div>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</div>
</main>
{{ template "footer" . }}
{{ end }}