blob: d248e8948d9b7ead4cb9d41d7012c1d09a6a3d3b (
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
|
{{- $file := "star-trek-voyager-transparent.png" }}
{{- $path := printf "content_images/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "150x webp" }}
{{- $img2x := $img.Resize "300x webp" }}
<section class="star-trek" style="display: flow-root">
<h2 id="star-trek"><a href="#star-trek">Star Trek</a></h2>
<img
alt="Voyager"
class="vert-move"
style="float: right; max-width: 20%;"
src="{{ $img1x.Permalink }}"
srcset="
{{ $img1x.Permalink }} 1x,
{{ $img2x.Permalink }} 2x
"
width="{{ $img1x.Width }}"
height="{{ $img1x.Height }}"
>
{{ partial "menu.html" (dict "menuID" "star-trek" "page" .) }}
</section>
|