mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2025-02-25 23:46:54 +01:00
Added footer.html
This commit is contained in:
parent
b2411776a6
commit
b97441e4f5
1 changed files with 51 additions and 0 deletions
51
layouts/partials/footer.html
Normal file
51
layouts/partials/footer.html
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{{ "<!-- Footer -->" | safeHTML }}
|
||||||
|
<footer id="footer" class="section-bg">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row wow fadeInUp" data-wow-duration="500ms">
|
||||||
|
<div class="col-xl-12">
|
||||||
|
|
||||||
|
{{ "<!-- Social Links -->" | safeHTML }}
|
||||||
|
<div class="social-icon">
|
||||||
|
<ul class="list-inline">
|
||||||
|
{{ range site.Params.social }}
|
||||||
|
<li class="list-inline-item">
|
||||||
|
<a href="{{ .link | safeHTML }}">
|
||||||
|
<i class="{{ .icon }}">
|
||||||
|
{{ if .img }}
|
||||||
|
<img class="social-icon social-icon-img" src="{{ .img }}">
|
||||||
|
{{ end }}
|
||||||
|
</i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ "<!-- Copyright -->" | safeHTML }}
|
||||||
|
<div class="copyright text-center">
|
||||||
|
<a href="{{ site.Home.Permalink }}">
|
||||||
|
<img src="{{ site.Params.logo | safeURL }}">
|
||||||
|
</a>
|
||||||
|
<br>
|
||||||
|
<p>{{ site.Params.copyright | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
{{ "<!-- /Footer -->" | safeHTML }}
|
||||||
|
|
||||||
|
{{ "<!-- Main Script --> " | safeHTML }}
|
||||||
|
{{ $script := resources.Get "js/script.js" | minify | fingerprint "sha384" }}
|
||||||
|
<script src="{{ $script.Permalink }}" integrity="{{ $script.Data.Integrity }}"></script>
|
||||||
|
|
||||||
|
{{ "<!-- JS Plugins -->" | safeHTML }}
|
||||||
|
{{ range site.Params.plugins.js }}
|
||||||
|
<script src="{{ .link | absURL }}"></script>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if site.Params.map.enable }}
|
||||||
|
{{ "<!-- Google Map API -->" | safeHTML }}
|
||||||
|
<script src="{{ site.Params.map.gmap_api | safeURL }}"></script>
|
||||||
|
{{ end }}
|
Loading…
Add table
Reference in a new issue