get_icon.html 266 B

1234567
  1. {{/* Function to get website icon image. */}}
  2. {{/* Input: size (int) */}}
  3. {{/* Output: resource (obj) */}}
  4. {{ $icon := resources.GetMatch "media/icon.png" }}
  5. {{ $icon_resized := $icon.Fill (printf "%sx%s Center" (string .) (string .)) }}
  6. {{ return $icon_resized }}