2016-09-26 08:34:28 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
{{ partial "lang.html" . }}
|
|
|
|
<head>
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
|
|
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
|
|
|
|
<div class="main-wrapper">
|
|
|
|
|
|
|
|
{{ if .Site.Params.summary.enable }}
|
|
|
|
{{ partial "summary.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.experiences.enable }}
|
|
|
|
{{ partial "experiences.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.projects.enable }}
|
|
|
|
{{ partial "projects.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.skills.enable }}
|
|
|
|
{{ partial "skills.html" . }}
|
|
|
|
{{ end }}
|
2017-03-15 13:33:40 +01:00
|
|
|
|
2016-09-26 08:34:28 +02:00
|
|
|
</div><!--//main-body-->
|
|
|
|
</div>
|
2017-03-15 13:33:40 +01:00
|
|
|
|
2016-09-26 08:34:28 +02:00
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
|
|
|
{{ partial "scripts.html" . }}
|
|
|
|
</body>
|
2017-03-15 13:33:40 +01:00
|
|
|
</html>
|