Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « _default « layouts - github.com/themefisher/restaurant-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8341d36e423c165c82fc4727d65569af0a3057a (plain)
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
{{ define "main" }}

{{- partial "header.html" . -}}

<section>
  <div class="container">
    <div class="row">
      <div class="col-md-12">
        <div class="block">
          <ul>
            {{ $paginator := .Paginate .Site.RegularPages }}
            {{ range $paginator.Pages }}
            <li class="wow fadeInLeft" data-wow-duration="300ms" data-wow-delay="300ms">
              <div class="blog-img">
                <img src="{{ .Params.image | absURL }}" alt="post-image" class="img-responsive">
              </div>
              <div class="content-right">
                <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
                <p>{{ .Summary }}</p>
              </div>
            </li>
            {{ end }}
          </ul>
        </div>
      </div><!-- .col-md-12 close -->
      {{ template "_internal/pagination.html" . }}
    </div><!-- .row close -->
  </div><!-- .containe close -->
</section><!-- #blog close -->

{{end}}