39 lines
689 B
HTML
39 lines
689 B
HTML
|
<!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 }}
|
||
|
|
||
|
</div><!--//main-body-->
|
||
|
</div>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
|
||
|
{{ partial "scripts.html" . }}
|
||
|
</body>
|
||
|
</html>
|
||
|
|