28 lines
804 B
HTML
28 lines
804 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.Language }}">
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
<body class="bg-dark container" style="font-family: 'Roboto', sans-serif;">
|
||
|
{{ partial "header.html" . }}
|
||
|
<div class="row mt-1">
|
||
|
<div
|
||
|
class="col-sm-4 order-sm-2 bg-secondary text-white border border-secondary rounded pt-3"
|
||
|
>
|
||
|
{{ partial "education.html" . }}
|
||
|
<hr style="width:50%;" />
|
||
|
{{ partial "language.html" . }}
|
||
|
<hr style="width:50%;" />
|
||
|
{{ partial "hobby.html" . }}
|
||
|
</div>
|
||
|
|
||
|
<div class="col-sm-8 text-white pt-3">
|
||
|
{{ partial "project.html" . }}
|
||
|
{{ partial "experience.html" . }}
|
||
|
{{ partial "skill.html" . }}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
</body>
|
||
|
</html>
|