A tumblelog theme for Hugo
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

image.html 263 B

12345678
  1. <figure>
  2. <a href="{{ .Permalink | relURL }}">
  3. <img src="{{ relURL "/images/" }}{{ .Params.image }}" alt="{{ .Params.title }}">
  4. </a>
  5. {{ if .Params.show_title }}
  6. {{ with .Params.title }}<figcaption>{{ . }}</figcaption>{{ end }}
  7. {{ end }}
  8. </figure>