13 lines
332 B
HTML
13 lines
332 B
HTML
{{ $source := index .Params 0 }}
|
|
|
|
{{ with .Page.Resources.GetMatch $source | readFile }}
|
|
{{ .|safeHTML }}
|
|
{{ end }}
|
|
<style>
|
|
/* Reset the image width that is set in the theme
|
|
If wired styling issues appear, check if the theme is responsible and eventually unset this here
|
|
*/
|
|
img {
|
|
width: unset;
|
|
}
|
|
</style> |