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

footer.html « partials « layouts - github.com/bul-ikana/hugo-cards.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6f2ffd5571038979008d009209fcf866082aac6 (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
<footer>
    <div class="container">
        <div class="row p20">
            {{ with .Site.Params.copyright }}
                <div class="col-md-4 text-center mt25">All rights reserved by <a target="_blank" href="{{ .link }}">{{ .name }}</a></div>
            {{ end }}

            <div class="col-md-4 text-center mt25" >
                {{ with .Site.Params.builtBy }}
                <a target="_blank" href="https://bool.netlify.com"><img src="https://img.shields.io/badge/Built%20by-bool-brightgreen.svg" alt="{{.}}"></a>
                {{ end }}
            </div>
            <div class="col-md-4 text-center mt25">
               {{ with .Site.Params.facebook }}
                <a target="_blank" href="{{.}}"><li class="social facebook"><i class="fa fa-facebook-square"></i></li></a> 
                {{ end }}
               {{with  .Site.Params.quora }}
                <a target="_blank" href="{{.}}"><li class="social quora"><i class="fa fa-quora"></i></li></a>
                {{ end }}
               {{with  .Site.Params.twitter }}
                <a target="_blank" href="{{.}}"><li class="social twitter"><i class="fa fa-twitter-square"></i></li></a>
                {{ end }}
               {{with  .Site.Params.github }}
                <a target="_blank" href="{{.}}"><li class="social github"><i class="fa fa-github-square"></i></li></a>
                {{ end }}
               {{with  .Site.Params.email }}
                <a target="_blank" href="mailto:{{.}}"><li class="social email"><i class="fa fa-envelope"></i></li></a>
                {{ end }}
            </div>

        </div> 
    </div>
</footer>