Files
bobatheme/layouts/authors/summary.html
BBaoVanC 9b2509c0d5 Change "Read more" to "See posts" on author summary card
I never noticed this; you can read more of an article, but it doesn't
really make any sense to "Read more" on an author.
2025-09-01 02:45:12 -05:00

19 lines
511 B
HTML

<article class="summary-card">
<h2 class="summary-card-title">
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
</h2>
{{ partial "page-metadata/author.html" . }}
{{ with .Summary }}
<div class="summary-card-description">
{{ . }}
</div>
{{ end }}
<div class="summary-card-readmore">
<a href="{{ .Permalink }}">{{ i18n "see_posts" }} &rarr;</a>
</div>
</article>