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

26 lines
539 B
HTML
Raw Normal View History

2016-09-26 08:34:28 +02:00
<div class="sidebar-wrapper">
{{ partial "profile.html" . }}
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 }}
{{ if .Site.Params.languages.enable }}
{{ partial "languages.html" . }}
{{ end }}
{{ if .Site.Params.interests.enable }}
{{ partial "interests.html" . }}
{{ end }}
2016-12-01 18:24:50 +01:00
</div><!--//sidebar-wrapper-->