resume/layouts/index.html
shockrah d21ddbdd3f + New job experience
+ Better education link support
* Swapped exp and projects section
2021-09-22 12:39:21 -07:00

36 lines
928 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 "experience.html" . }}
{{ partial "project.html" . }}
{{ partial "skill.html" }}
</div>
</div>
{{ partial "footer.html" . }}
</body>
<style>
.skill-type {
color: #ffc107;
}
.skill-indent {
text-indent: 30px;
}
</style>
</html>