summaryrefslogtreecommitdiff
path: root/layouts/partials/homepage/startrek.html
blob: 845c07ac3b3ca2be71191f2e944f9210d6f904db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{- $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
    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>