forked from mirrors/relay
16 lines
384 B
HTML
16 lines
384 B
HTML
@use crate::db::Info;
|
|
@use activitystreams::iri_string::types::IriString;
|
|
|
|
@(info: &Info, base: &IriString)
|
|
|
|
<section 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>
|
|
</section>
|