hyaenidae/server/templates/comments/profile_box.rs.html

47 lines
1.8 KiB
HTML
Raw Normal View History

@use crate::templates::profiles::icon;
@use crate::{profiles::Profile, comments::{Comment, ItemWithAuthor}};
@use hyaenidae_toolkit::{templates::link, Link};
@use hyaenidae_toolkit::templates::icon as tkicon;
@use hyaenidae_toolkit::templates::ago;
@(profile: &Profile, comment: &Comment, replying_to: &ItemWithAuthor, dark: bool, meta: Content, body: Content)
<div class="profile-box">
@:tkicon(&profile.view_path(), true, dark, {
@if let Some(key) = profile.icon_key() {
@:icon(key, &profile.name())
}
})
<div class="profile-box--content">
<div class="profile-box--all-meta">
<div>
<div class="profile-box--meta">
@if let Some(name) = profile.display_name() {
<div class="profile-box--meta--display">
@:link(&Link::current_tab(&profile.view_path()).plain(true).dark(dark), {
@name
})
</div>
}
<div class="profile-box--meta--handle">
@:link(&Link::current_tab(&profile.view_path()).plain(true).dark(dark), {
@profile.full_handle()
})
</div>
<div class="profile-box--meta--date">
posted @:ago(comment.published(), dark)
</div>
</div>
<div class="profile-box--replying-to">
@:link(&replying_to.link(dark), {
Replying to @replying_to.name()
})
</div>
</div>
<div class="profile-box--extra-meta">@:meta()</div>
</div>
<div class="profile-box--body">@:body()</div>
</div>
</div>