Skip to content
代码片段 群组 项目
recommendations.html 819 B
{{ define "recommendations" }}
<section class="recommendations">
    <div class="container">
      <div class="image">
        <img src="/static/icons/Hipster_OtherProducts.svg" alt="icon" />
      </div>
      <div class="row prods">
          {{range . }}
          <div class="col-md-3">
            <div class="h-card card mb-3 box-shadow">
              <a href="/product/{{.Id}}">
                <img alt="" style="width: 100%; height: auto;" src="{{.Picture}}">
                <div class="card-hover"></div>
              </a>
              <div class="card-body text-center py-2">
                <h5 class="card-title h-card-title">
                  {{ .Name }}
                </h5>
              </div>
            </div>
          </div>
          {{ end }}
        </div>
    </div>
</section>
{{ end }}