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

author-figure.html 401B

123456789101112
  1. <figure>
  2. {{ if .Params.photo }}
  3. <img class="rounded-circle img-fluid" src="{{.Params.Photo}}">
  4. {{else if .Params.email}}
  5. <img class="rounded-circle img-fluid" src="https://www.gravatar.com/avatar/{{ md5 .Params.email }}?s=128&pg&d=identicon">
  6. {{ end }}
  7. <figcaption>
  8. <h5 class="font-weight-bold">
  9. {{ .Params.name }}
  10. </h5>
  11. </figcaption>
  12. </figure>