2023-08-03 12:43:17 -03:00
|
|
|
{{define "author-info"}}
|
2023-08-10 12:36:28 -03:00
|
|
|
<div class="author-info" hx-boost="true">
|
2023-08-03 12:43:17 -03:00
|
|
|
<a class="unstyled-link" href="/{{.Handle}}">
|
2023-08-10 12:36:28 -03:00
|
|
|
<img
|
|
|
|
class="profile-image"
|
2023-08-13 15:55:04 -03:00
|
|
|
src="/content/{{.GetProfileImageLocalPath}}"
|
2023-08-10 12:36:28 -03:00
|
|
|
/>
|
2023-08-03 12:43:17 -03:00
|
|
|
</a>
|
|
|
|
<span class="name-and-handle">
|
|
|
|
<div class="display-name">{{.DisplayName}}</div>
|
|
|
|
<div class="handle">@{{.Handle}}</div>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|