added first version of theme
This commit is contained in:
40
layouts/partials/footer.html
Normal file
40
layouts/partials/footer.html
Normal file
@@ -0,0 +1,40 @@
|
||||
|
||||
<footer class="site-footer">
|
||||
<div class="wrapper">
|
||||
<div class="footer-col-wrapper">
|
||||
<div class="footer-col footer-col-1">
|
||||
<ul class="contact-list">
|
||||
<li><a href="{{ "/" | relURL }}">{{ .Site.Params.title }}</a></li>
|
||||
<li>{{ $.Site.Params.author }}</li>
|
||||
<li><a href="mailto:{{ $.Site.Params.email }}">{{ $.Site.Params.email }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="footer-col footer-col-2">
|
||||
<ul class="social-media-list">
|
||||
{{ if $.Site.Params.twitter_username }}
|
||||
<li>{{ partial "link-twitter.html" . }}</li>
|
||||
{{end}}
|
||||
{{ if $.Site.Params.github_username }}
|
||||
<li>{{ partial "link-github.html" . }}</li>
|
||||
{{end}}
|
||||
<li><a href="{{ "/index.xml" | relURL }}"><span class="username">RSS Feed</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="footer-col footer-col-3">
|
||||
<ul class="contact-list">
|
||||
<li>{{ partial "license.html" . }}</li>
|
||||
<li><span>Theme <i>Tiles</i> by <a href="https://twitter.com/haefelfinger" target="_blank">haefelfinger</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
{{ $mermaidJs := resources.Get "js/mermaid.min.js" | resources.Fingerprint "sha512" }}
|
||||
<script type="text/javascript" src="{{ $mermaidJs.Permalink }}" integrity="{{ $mermaidJs.Data.Integrity }}"></script>
|
||||
|
||||
|
||||
{{ $mermaidOptions := resources.Get "js/mermaid.config.js" | resources.Fingerprint "sha512" }}
|
||||
<script type="text/javascript" src="{{ $mermaidOptions.Permalink }}" integrity="{{ $mermaidOptions.Data.Integrity }}"></script>
|
Reference in New Issue
Block a user