Files
hugo-profile/layouts/partials/sections/v3/education.html
T
gurusabarish 54bcff5142 v3 development
2021-05-13 22:48:06 +05:30

28 lines
892 B
HTML

<section id="education">
<div class="container-fluid py-3">
<div class="text-light text-center h3">Education</div>
<div class="row row-eq-height justify-content-center">
<div class="col-md-5 pl-5 py-3 pb-0 v-center">
<ul class="edu">
{{ range .Site.Params.education }}
<li class="py-2 edu-item">
<h5 style="font-size: 20px;">{{ .degree }} - {{ .branch }}</h5>
<div style="font-size: 15px;">
{{ .university }}
</div>
<div class="">
<small>{{ .startedyear }}</small>
-
<small>{{ .graduation}}</small>
</div>
</li>
{{ end }}
</ul>
</div>
<div class="col-md-5 overflow-hidden py-3 d-none d-md-block">
<img class="edu-img" src="/education.svg">
</div>
</div>
</div>
</section>