adding typing to skill section

This commit is contained in:
shockrah
2020-02-05 20:13:57 -08:00
parent cd360661b3
commit 3583672bea
3 changed files with 32 additions and 20 deletions

View File

@@ -18,10 +18,14 @@
<div class="col-sm-8 text-white pt-3">
{{ partial "project.html" . }}
{{ partial "experience.html" . }}
{{ partial "skill.html" . }}
</div>
</div>
{{ partial "footer.html" . }}
</body>
<style>
.skill-type {
text-indent: 30px;
}
</style>
</html>

View File

@@ -2,6 +2,7 @@
<h3>{{ .Site.Params.language.title }}</h3>
<ul class="list-unstyled" style="text-indent: 1.25em;">
{{ range .Site.Params.language.list }}
<li>{{ .language }}</li>
<div class="skill-indent">{{ .type }}</div>
<div class="skill-type">{{ .language }}</div><br>
{{ end }}
</ul>