Convert homepage into hugo templates

This commit is contained in:
hossainemruz 2020-04-14 21:35:57 +06:00
parent 7b25c40baa
commit 3873876e35
27 changed files with 317 additions and 982 deletions

View file

@ -0,0 +1,14 @@
<div class="col-10 col-lg-8">
<div class="experience-entry-heading">
<h5>{{ .designation }}</h5>
<h6><a href="{{ .company.url }}">{{ .company.name }}</a></h6>
<p class="text-muted">{{ .start }} - {{ if .end }} {{ .end }} {{ else }}Present{{ end }}, {{ .company.location }}</p>
</div>
<p>{{ .company.overview }}</p>
<h6 class="text-muted">Responsibilities:</h6>
<ul class="justify-content-around">
{{ range .responsibilities }}
<li>{{ . }}</li>
{{ end }}
</ul>
</div>