mirror of
https://git.adityakumar.xyz/hugo-devresume-theme.git
synced 2024-11-09 14:59:45 +00:00
16 lines
682 B
HTML
16 lines
682 B
HTML
|
|
<div class="resume-intro py-3">
|
|
|
|
<div class="media flex-column flex-md-row align-items-center">
|
|
|
|
{{ if .Site.Params.profile.avatar }}
|
|
<img class="resume-profile-image mb-3 mb-md-0 mr-md-5 ml-md-0 rounded mx-auto" src="{{ .Site.BaseURL }}/{{ .Site.Params.profile.avatar }}" alt="image">
|
|
{{ end }}
|
|
|
|
<div class="media-body text-left">
|
|
<p class="mb-0">{{ .Site.Params.summary.text | markdownify }}</p>
|
|
</div><!--//media-body-->
|
|
|
|
</div>
|
|
|
|
</div><!--//resume-intro-->
|