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

footer.html « partials « layouts - github.com/cdeck3r/OneDly-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb0b1d45f6eb4e102d4b0231a88b7338a21298c4 (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
<!-- Footer -->
<footer>
    <div class="container">
        <div class="row">
            <div class="col-md-8">
				<ul class="list-inline">
					<li>
						<a class="page-scroll" href="#intro">Up</a>
					</li>
					{{ if (fileExists "imprint-gdpr/imprint.md") -}}
						<li class="footer-menu-divider">&sdot;</li>
						<li>
							<a href="{{ "imprint-gdpr/imprint" | absURL }}" >Imprint</a>
						</li>
					{{- end }}
					{{ if (fileExists "imprint-gdpr/gdpr.md") -}}
						<li class="footer-menu-divider">&sdot;</li>
						<li>
							<a href="{{ "imprint-gdpr/gdpr" | absURL }}" >GDPR</a>
						</li>
					{{- end }}
				 </ul>
				 <p class="copyright text-muted small">Copyright &copy; {{ .Site.Title }} All Rights Reserved</p>
            </div>
            <div class="col-md-4">
				Built with <a href="http://gohugo.io">Hugo</a> and the
				<a href="https://github.com/cdeck3r/OneDly-Theme">OneDly project</a>
				theme.
            </div>
        </div>
    </div>
</footer>
{{ partial "js.html" . }}
</body>
</html>