Files
personal-website/layouts/partials/about-card.html
T

21 lines
738 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ $cv := resources.Get "curriculum-vitae.pdf" }}
{{ $faceImage := resources.Get "images/borded-face.webp" }}
<div id="about-card">
<img src="{{ $faceImage.Permalink }}" alt="Hazem Krimi's face" />
<div>
<p>
I am a software engineer with an extensive experience building web and crossplatform mobile applications with focus on optimal performance and
delightful user experience using various technologies including JavaScript, TypeScript, Python, C/C++, Go, and Kotlin.
</p>
<div id="links">
<a href="{{ $cv.Permalink }}" target="_blank">
Download CV
</a>
<a class="read-more" href="{{ urls.JoinPath .Site.BaseURL "about" }}">
Read further
</a>
</div>
</div>
</div>