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

footer.html « partials « layouts - github.com/wileybaba/hugo-theme-robotico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4751017517ba112116e906101e29aff56930ac36 (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
<div class="my-4 footer">
    <div class="container">
        <div class="row justify-content-center">
            <div class="col-sm-12 col-md-5">
                {{ if .Site.Params.copyright }}
                    <div class="mx-0 mx-md-3 text-left">
                        {{ if .Site.Params.copyrightUrl }}
                            <a href="{{ .Site.Params.copyrightUrl }}">{{ .Site.Params.copyright }}</a>
                        {{ else }}
                            <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright }}</a>
                        {{ end }}
                    </div>
                {{ end }}
            </div>
            <div class="col-sm-12 col-md-5">
                <div class="mx-0 mx-md-3 text-right">
                    {{ if .Site.Params._500px }}
                        <a href="https://500px.com/{{ .Site.Params._500px }}" target="_blank">
                            <img class="icon" src="{{ .Site.BaseURL }}img/500px.svg" alt="500px" />
                        </a>
                    {{ end }}

                    {{ if .Site.Params.github }}
                        <a href="https://github.com/{{ .Site.Params.github }}" target="_blank">
                            <img class="icon" src="{{ "img/github.svg" | relURL }}" alt="github" />
                        </a>
                    {{ end }}

                    {{ if .Site.Params.twitter }}
                        <a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank">
                            <img class="icon" src="{{ "img/twitter.svg" | relURL }}" alt="twitter" title="my twitter" />
                        </a>
                    {{ end }}

                    {{ if .Site.Params.instagram }}
                        <a href="https://instagram.com/{{ .Site.Params.instagram }}" target="_blank">
                            <img class="icon" src="{{ "img/instagram.svg" | relURL }}" alt="instagram" title="my instagram" />
                        </a>
                    {{ end }}

                    {{ if .Site.Params.linkedin }}
                        <a href="https://www.linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank">
                            <img class="icon" src="{{ .Site.BaseURL }}img/linkedin.svg" alt="linkedin" />
                        </a>
                    {{ end }}

                    {{ if .Site.Params.email }}
                        <a href="mailto:{{ .Site.Params.email }}">
                            <img class="icon" src="{{ .Site.BaseURL }}img/email.svg" alt="email" title="email me" />
                        </a>
                    {{ end }}

                    {{ if .Site.Params.fork}}
                        <a href="{{ .Site.Params.fork }}">
                            <img class="icon" src="{{ .Site.BaseURL }}img/git.svg" alt="fork this page" title="fork this theme" />
                        </a>
                    {{ end }}

                    {{ if .IsTranslated }}
                        <br />
                        {{ range .Translations }}
                            <a href="{{ .Permalink }}">
                                <strong>{{ upper .Language.LanguageName }}</strong>
                            </a>
                        {{ end }}
                    {{ end }}
                </div>
            </div>
        </div>
    </div>
</div>