Convert homepage into hugo templates
This commit is contained in:
parent
7b25c40baa
commit
3873876e35
27 changed files with 317 additions and 982 deletions
14
layouts/partials/experiences/experience-info.html
Normal file
14
layouts/partials/experiences/experience-info.html
Normal 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>
|
11
layouts/partials/experiences/left-to-right-h-line.html
Normal file
11
layouts/partials/experiences/left-to-right-h-line.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<div class="row horizontal-line">
|
||||
<div class="col-1 col-lg-2 timeline-side-div">
|
||||
<div class="corner"></div>
|
||||
</div>
|
||||
<div class="col-10 col-lg-8">
|
||||
<hr />
|
||||
</div>
|
||||
<div class="col-1 col-lg-2 timeline-side-div">
|
||||
<div class="corner"></div>
|
||||
</div>
|
||||
</div>
|
3
layouts/partials/experiences/left-v-line.html
Normal file
3
layouts/partials/experiences/left-v-line.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="col-1 col-lg-2 text-center vertical-line d-inline-flex justify-content-center">
|
||||
<div class="circle font-weight-bold">{{ add . 1 }}</div>
|
||||
</div>
|
11
layouts/partials/experiences/right-to-left-h-line.html
Normal file
11
layouts/partials/experiences/right-to-left-h-line.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<div class="row horizontal-line">
|
||||
<div class="col-1 col-lg-2 timeline-side-div">
|
||||
<div class="corner"></div>
|
||||
</div>
|
||||
<div class="col-10 col-lg-8">
|
||||
<hr />
|
||||
</div>
|
||||
<div class="col-1 col-lg-2 timeline-side-div">
|
||||
<div class="corner"></div>
|
||||
</div>
|
||||
</div>
|
3
layouts/partials/experiences/right-v-line.html
Normal file
3
layouts/partials/experiences/right-v-line.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="col-1 col-lg-2 text-center vertical-line d-inline-flex justify-content-center">
|
||||
<div class="circle font-weight-bold">{{ add . 1 }}</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue