21 lines
464 B
HTML
21 lines
464 B
HTML
<div class="sidebar-wrapper">
|
|
|
|
{{ partial "profile.html" . }}
|
|
|
|
{{ 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 }}
|
|
|
|
</div><!--//sidebar-wrapper-->
|