resume/layouts/index.html

36 lines
928 B
HTML
Raw Normal View History

<!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" . }}
2020-02-06 04:21:23 +00:00
{{ partial "skill.html" }}
</div>
</div>
{{ partial "footer.html" . }}
</body>
2020-02-06 04:13:57 +00:00
<style>
.skill-type {
2020-02-06 04:21:23 +00:00
color: #ffc107;
}
.skill-indent {
2020-02-06 04:13:57 +00:00
text-indent: 30px;
}
</style>
</html>