2019-11-03 18:18:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
2019-11-27 19:49:27 +00:00
|
|
|
<html lang="{{ .Site.LanguageCode }}">
|
2019-11-03 18:18:08 +00:00
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="main-wrapper">
|
|
|
|
|
|
|
|
<div class="container px-3 px-lg-5">
|
|
|
|
|
|
|
|
<article class="resume-wrapper mx-auto theme-bg-light p-5 mb-5 my-5 shadow-lg">
|
|
|
|
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
{{ if .Site.Params.summary.enable }}
|
|
|
|
{{ partial "summary.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<div class="resume-body">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="resume-main col-12 col-lg-8 col-xl-9 pr-0 pr-lg-5">
|
|
|
|
|
|
|
|
{{ if .Site.Params.experience.enable }}
|
|
|
|
{{ partial "experience.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.projects.enable }}
|
|
|
|
{{ partial "projects.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.information.enable }}
|
|
|
|
{{ partial "information.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</div><!--//resume-main-->
|
|
|
|
|
|
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
|
|
|
|
</div><!--//row-->
|
|
|
|
|
|
|
|
</div><!--//resume-body-->
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
{{ if .Site.Params.social.enable }}
|
|
|
|
{{ partial "social.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
</div><!--//container-->
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
|
|
|
</div><!--//main-wrapper-->
|
|
|
|
|
|
|
|
{{ partial "scripts.html" . }}
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|