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

42 lines
1.5 KiB
HTML

@use crate::templates::profiles::icon;
@use crate::profiles::Profile;
@use chrono::{DateTime, Utc};
@use hyaenidae_toolkit::{templates::link, Link};
@use hyaenidae_toolkit::templates::ago;
@use hyaenidae_toolkit::templates::icon as tkicon;
@(profile: &Profile, published: Option<DateTime<Utc>>, dark: bool, 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 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>
@if let Some(published) = published {
<div class="profile-box--meta--date">
posted
@:ago(published, dark)
</div>
}
</div>
</div>
<div class="profile-box--body">@:body()</div>
</div>
</div>