17 lines
385 B
HTML
17 lines
385 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">
|
|
Utilise @info.software, version @info.version.
|
|
@if info.reg {
|
|
Inscriptions ouvertes
|
|
}
|
|
</p>
|
|
</section>
|