Initial commit: Add telonma homepage
This commit is contained in:
47
layouts/partials/footer/footer.html
Normal file
47
layouts/partials/footer/footer.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<div id="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
{{- if gt (len .Site.Params.footer.links) 0 }}
|
||||
{{- $link_cols := div (cond .Site.Params.footer.contact_form.enabled 6 12) (len .Site.Params.footer.links) }}
|
||||
{{- range .Site.Params.footer.links }}
|
||||
<section class="col-{{ $link_cols }} col-6-narrower col-12-mobilep">
|
||||
<h3>{{ .header }}</h3>
|
||||
<ul class="links">
|
||||
{{- range .links }}
|
||||
{{- if .pageref -}}
|
||||
<li><a href="{{ (site.GetPage .pageref).Permalink }}">{{ .title }}</a>
|
||||
{{- else -}}
|
||||
<li><a href="{{ .url }}">{{ .title }}</a>
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
</ul>
|
||||
</section>
|
||||
{{- end }}
|
||||
{{ end }}
|
||||
|
||||
{{- if .Site.Params.footer.contact_form.enabled }}
|
||||
{{- partial "footer/contact.html" .Site.Params.footer.contact_form }}
|
||||
{{- end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ul class="icons">
|
||||
{{- range .Site.Params.social }}
|
||||
<li><a href="{{ .url }}" class="{{ if .icon }}icon brands {{ .icon }}{{ end }}">
|
||||
<span class="label">{{ .title }}</span>
|
||||
</a>
|
||||
{{- end }}
|
||||
</ul>
|
||||
|
||||
<div class="copyright">
|
||||
<ul class="menu">
|
||||
{{ if .Site.Params.Copyright }}
|
||||
<li>{{ replace .Site.Params.Copyright "{currentYear}" now.Year }}
|
||||
{{ end }}
|
||||
{{- if .Site.Params.showArcana | default false }}
|
||||
<li>Design: <a href="https://html5up.net">HTML5 UP</a>
|
||||
<li><a href="https://github.com/half-duplex/hugo-arcana">Theme</a>
|
||||
{{- end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user