* Managing i18n * Fix absolute path * Config files * Home link manage langage * Fixing footer i18n * Implemented i18n on newsletter * Implemented two languages in example * Removed old section directory * Using yaml in data to organize home summary * Fully working for old versions without i18n * Integrating language menu CSS * Fix language dropdown CSS * Refactor translation codes * Remove duplicate code * Fix URL issues * Move customMenus and other site related config into data section * Fix error during language toggle * Only show the available translation for the posts * Handle navbar brand URL properly * Fix responsiveness Co-authored-by: Hugo MARTIN <hugo.martin.69@gmail.com> Co-authored-by: hossainemruz <emruz@appscode.com>
45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
<div class="container anchor p-lg-5 about-section" id="{{ replace (lower .section.name) " " "-" }}">
|
|
<div class="row pt-sm-2 pt-md-4 align-self-center">
|
|
<!-- summary -->
|
|
<div class="col-sm-6">
|
|
<h3 class="p-1">{{ site.Params.author.name }}</h3>
|
|
{{ if .designation }}
|
|
<h5 class="p-1">
|
|
{{ .designation }}
|
|
{{ if .company }}
|
|
at <a href="{{ .company.url }}">{{ .company.name }}</a>
|
|
{{ end }}
|
|
</h5>
|
|
{{ end }}
|
|
<p class="p-1 text-justify">
|
|
{{ .summary | markdownify }}
|
|
</p>
|
|
<div class="text-container ml-auto">
|
|
<ul class="social-link d-flex">
|
|
{{ range .socialLinks }}
|
|
<li>
|
|
{{ if eq .name "Email" }}
|
|
<a href="mailto:{{ .url }}" target="/"><i class="{{ .icon }}"></i></a>
|
|
{{ else }}
|
|
<a href="{{ .url }}" target="/"><i class="{{ .icon }}"></i></a>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ if .resume }}
|
|
<a href="{{ .resume | absURL }}" target="#"
|
|
><button class="btn btn-dark">{{ i18n "resume"}}</button></a
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
<!-- soft skills circular-progressbar -->
|
|
<div class="col-sm-6 pt-5 pl-md-4 pl-sm-3 pt-sm-0">
|
|
<div class="row">
|
|
{{ range .softSkills }}
|
|
{{ partial "misc/soft-skills.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|