mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Patrick Kollitsch
20.13.2026 e861c031e269334006abb736331d6a51c4d05413
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{/*
  style/GetResource
  Get a style asset stored at `/assets/ananke/css`
 
  @author @regisphilibert
 
  @context String (.)
 
  @access private
 
  @returns Resource
 
*/}}
{{ $resource := dict }}
{{ with resources.Get (fmt.Print "/ananke/css/" .) }}
  {{ $resource = . }}
{{ end }}
 
{{ return $resource }}