mirror of
https://git.asonix.dog/asonix/relay.git
synced 2024-11-13 05:01:06 +00:00
16 lines
418 B
HTML
16 lines
418 B
HTML
@use crate::db::Info;
|
|
@use activitystreams::iri_string::types::IriString;
|
|
|
|
@(info: &Info, base: &IriString)
|
|
|
|
<article class="info">
|
|
@if let Some(authority) = base.authority_str() {
|
|
<h4 class="padded"><a href="@base">@authority</a></h4>
|
|
}
|
|
<p class="padded">
|
|
Running @info.software, version @info.version.
|
|
@if info.reg {
|
|
Registration is open
|
|
}
|
|
</p>
|
|
</article>
|