aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/components.html
blob: 8f1bcc2962614bfe848f5ff4e5199481317b0599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{define "logs_display"}}
<article>
  {{ $uri := .URI }} {{ range .Data }}
  <article>
    <h2><a href="/{{ $uri }}/{{ .Slug }}">{{ .DataTitle }}</a></h2>
    <figure>
      <a href="/{{ $uri }}/{{ .Slug }}"><img src="{{ static .Img.Src }}" alt="{{ .Img.Alt }}" /></a>
      <figcaption>{{ .Img.Legend }}</figcaption>
    </figure>
    <p>{{ .Description }}</p>
  </article>
  {{ end }}
  <div class="pagination">
    <a href="/{{ $uri }}/">Voir plus</a>
  </div>
</article>
{{end}}