{{ $image := resources.Get "images/logo.jpg" }}
{{ with $image }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}
The code above brings me the logo.jpg
file in the images
folder under the assets
folder.
I want to make this assets
folder a static
folder.
How can I do that?