summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/book.html
blob: 45f806aab10771dab480eb740dc600f098d2fd01 (plain) (blame)
1
2
3
4
5
6
7
8
9
<div class="booklist-item">
  {{ if .Get "url" }}
    <a href="{{ .Get "url" }}">
      <img class="book-cover" src="{{ .Get "cover" }}" alt="图书封面" />
    </a>
  {{ else }}
    <img class="book-cover" src="{{ .Get "cover" }}" alt="图书封面" />
  {{ end }}
</div>