20 lines
486 B
HTML
20 lines
486 B
HTML
{{ define "main" }}
|
|
<div class="container-xxl">
|
|
<main>
|
|
<section>
|
|
<p class="bg-body-tertiary border rounded shadow-sm p-3 text-center">
|
|
<span class="d-block fs-1 mb-3">🙃</span>
|
|
Hey, my name is <b>Alexander Popov</b>.
|
|
I am a chef of anything IT.
|
|
</p>
|
|
</section>
|
|
|
|
{{ template "_index/main_projects.html" . }}
|
|
{{ template "_index/secondary_projects.html" . }}
|
|
{{ template "_index/what_i_use.html" . }}
|
|
{{ template "_index/reach_me.html" . }}
|
|
|
|
</main>
|
|
</div>
|
|
{{ end }}
|