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: 404b53dd2e7c122a8b490d39dfd494aec8176906 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!-- Footer -->
<div id="footer-wrapper">
    <section id="footer" class="container">
        <div class="row">
            {{ partial "footer/recentposts.html" . }}
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ .Site.Params.Footer.title2 }}</h2>
                    </header>
                    <a href="{{ .Site.Params.Footer.imagelink2 }}" class="image featured"><img src="{{ .Site.BaseURL }}{{ .Site.Params.Footer.imageurl2 }}" alt="" /></a>
                    <p>
                        {{ .Site.Params.Footer.description2 }}
                    </p>
                    <footer>
                        <a href="{{ .Site.Params.Footer.buttonlink2 }}" class="button">{{ .Site.Params.Footer.buttontext2 }}</a>
                    </footer>
                </section>
            </div>
        </div>
        <div id="contact" class="row">
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ .Site.Params.Footer.title3 }}</h2>
                    </header>
                    <ul class="divided">
                        {{ range .Site.Data.footerlinks.left.links }}
                        <li><a href="{{ .url }}">{{ .text }}</a></li>
                        {{ end }}
                    </ul>
                </section>
            </div>
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ .Site.Params.Footer.title4 }}</h2>
                    </header>
                    <ul class="divided">
                        {{ range .Site.Data.footerlinks.right.links }}
                        <li><a href="{{ .url }}">{{ .text }}</a></li>
                        {{ end }}
                    </ul>
                </section>
            </div>
            <div class="4u 12u(mobile)">
                <section>
                    <header>
                        <h2>{{ .Site.Params.Footer.title5 }}</h2>
                    </header>
                    {{ partial "footer/social.html" . }}
                    <ul class="contact">
                        <li>
                            <h3>Address</h3>
                            <p>
                                {{ .Site.Params.Address.line1 }}<br />
                                {{ .Site.Params.Address.line2 }}<br />
                                {{ .Site.Params.Address.line3 }}
                            </p>
                        </li>
                        <li>
                            <h3>Mail</h3>
                            <p><a href="mailto:{{ .Site.Params.Contact.email }}">{{ .Site.Params.Contact.email }}</a></p>
                        </li>
                        <li>
                            <h3>Phone</h3>
                            <p>{{ .Site.Params.Contact.phone }}</p>
                        </li>
                    </ul>
                </section>
            </div>
        </div>
        {{ partial "footer/copyright.html" . }}
    </section>
</div>