aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/components.html
blob: 9792784714a6bb24754c0f5486d87c814fa9b860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{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 }}
  <a href="/{{ $uri }}/">Voir plus</a> 
</article>
{{end}}