hugo-orbit-theme/layouts/partials/sidebar.html

26 lines
535 B
HTML
Raw Normal View History

2016-09-26 08:34:28 +02:00
<div class="sidebar-wrapper">
{{ partial "profile.html" . }}
2017-03-15 13:33:40 +01:00
2017-02-20 14:25:54 +01:00
{{ if .IsTranslated }}
{{ partial "translate.html" . }}
{{ end }}
2016-09-26 08:34:28 +02:00
{{ if .Site.Params.contact.enable }}
{{ partial "contact.html" . }}
{{ end }}
{{ if .Site.Params.education.enable }}
{{ partial "education.html" . }}
{{ end }}
2017-03-15 13:33:40 +01:00
{{ if .Site.Params.language.enable }}
{{ partial "language.html" . }}
2016-09-26 08:34:28 +02:00
{{ end }}
{{ if .Site.Params.interests.enable }}
{{ partial "interests.html" . }}
{{ end }}
2016-12-01 18:24:50 +01:00
</div><!--//sidebar-wrapper-->