aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home.html
blob: f0b9b9cd795a9dffc2818786c566812f3b087854 (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
{{define "body"}}
<div class="introduction">
    <h1>logs</h1>
    <p>
        {{ .Description }}
    </p>
</div>
<article>
    {{ range .Logs }}
    <article>
        <h2><a href="/log/{{ .Slug }}">{{ .LogTitle }}</a></h2>
        <figure>
            <a href="/log/{{ .Slug }}"><img src="{{ .Img.Src }}" alt="{{ .Img.Alt }}"></a>
            <figcaption>{{ .Img.Legend }}</figcaption>
        </figure>
        <p>
            {{ .Description }}
        </p>
    </article>
    {{ end }}
    <div class="pagination">
        <a href="">Précédent</a>
        <p>01/15</p>
        <a href="">Suivant</a>
    </div>
</article>
{{end}}