blob: 272488a1bcc71fd49b8088c551addf0421c0d332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{{- $file := "me.png" }}
{{- $path := printf "content_images/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "150x webp" }}
{{- $img2x := $img.Resize "300x webp" }} <!-- -->
<section style="display: flow-root">
<h2>About</h2>
Hey! I'm Michał Sapka, a computer programmer living in Kraków, Poland.
This website is not dedicated to any particular one thing.
Instead, I write whatever interests me most at the moment.
<img
alt="Mihal"
style="float: right; max-width: 20%;"
src="{{ $img1x.Permalink }}"
srcset="
{{ $img1x.Permalink }} 1x,
{{ $img2x.Permalink }} 2x
"
width="{{ $img1x.Width }}"
height="{{ $img1x.Height }}"
>
No content here is auto-generated, so any bugs, problems, or controversies are entirely on me!
{{ partial "menu.html" (dict "menuID" "main-nav" "page" .) }}
</section>
|