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

index.html « footer « partials « layouts - github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 806ad281307d0a5743f61e8ab5988e64ea27ded8 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!-- Footer -->
<div id="footer-wrapper">
    <section id="footer" class="container">
        <div class="row">
            {{ partial "footer/recentposts.html" . }}
            <div class="4u 12u(mobile)">
                <section>
                    {{ with index .Site.Data.footer.content.sections 1 }}
                    <header>
                        <h2>{{ .title }}</h2>
                    </header>
                    <a href="{{ .imagelink }}" class="image featured"><img src="{{ .Site.BaseURL }}{{ .imageurl }}" alt="" /></a>
                    <p>
                        {{ .description }}
                    </p>
                    <footer>
                        <a href="{{ .buttonlink }}" class="button">{{ .buttontext }}</a>
                    </footer>
                    {{ end }}
                </section>
            </div>
        </div>
        <div id="contact" class="row">
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ (index .Site.Data.footer.content.sections 2).title }}</h2>
                    </header>
                    <ul class="divided">
                        {{ range .Site.Data.footer.links.left.links }}
                        <li><a href="{{ .url }}">{{ .text }}</a></li>
                        {{ end }}
                    </ul>
                </section>
            </div>
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ (index .Site.Data.footer.content.sections 3).title }}</h2>
                    </header>
                    <ul class="divided">
                        {{ range .Site.Data.footer.links.right.links }}
                        <li><a href="{{ .url }}">{{ .text }}</a></li>
                        {{ end }}
                    </ul>
                </section>
            </div>
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ (index .Site.Data.footer.content.sections 4).title }}</h2>
                    </header>
                    {{ partial "footer/social.html" . }}
                    {{ partial "footer/contact.html" . }}
                </section>
            </div>
        </div>
        {{ partial "footer/copyright.html" . }}
    </section>
</div>