teach-matsuuratomoya-com/layouts/shortcodes/preview_code.html

30 lines
651 B
HTML
Raw Permalink Normal View History

2023-06-13 09:44:27 +00:00
{{ $ref := "" }}
{{ $type := "" }}
{{ $target := "" }}
{{ with .Get "type" }}
{{ $type = . }}
{{ end }}
{{ with .Get "href" }}
{{ $ref = . }}
{{ $target = "_blank" }}
{{ end }}
{{ with .Get "relref" }}
{{ $ref = relref $ . }}
{{ end }}
<h3>{{ (path.Base $ref) | .Page.RenderString }}</h3>
<a {{ with $ref }} href="{{.}}" {{ end }} {{ with $target }} target="{{.}}" rel="noopener" {{ end }} class="book-btn{{ with .Get "class" }} {{ . }}{{ end }}">
DL
</a>
{{$page:=.Page}}
{{ with .Page.Resources.GetMatch $ref }}
{{( printf "```%s\n%s\n```\n" $type .Content ) | $page.RenderString}}
{{else}}
<p>file {{$ref}} not found </p>
{{ end }}