2018-12-06 18:54:16 +01:00
@use template_utils::*;
@use plume_models::instance::Instance;
2018-12-07 12:05:01 +01:00
@use routes::*;
2018-12-06 18:54:16 +01:00
2018-12-14 23:16:18 +01:00
@(ctx: BaseContext, instance: Instance, n_users: i64, n_articles: i64)
2018-12-06 18:54:16 +01:00
< section class = "spaced" >
< div class = "cards" >
< div class = "presentation card" >
< h2 > @i18n!(ctx.1, "What is Plume?")< / h2 >
< main >
< p > @i18n!(ctx.1, "Plume is a decentralized blogging engine.")< / p >
2019-04-04 21:06:37 +02:00
< p > @i18n!(ctx.1, "Authors can manage multiple blogs, each as its own website.")< / p >
2019-04-01 20:09:29 +02:00
< p > @i18n!(ctx.1, "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon.")< / p >
2018-12-06 18:54:16 +01:00
< / main >
2018-12-07 12:05:01 +01:00
< a href = "@uri!(user::new)" > @i18n!(ctx.1, "Create your account")< / a >
2018-12-06 18:54:16 +01:00
< / div >
< div class = "presentation card" >
< h2 > @i18n!(ctx.1, "About {0}"; instance.name)< / h2 >
< main >
@Html(instance.short_description_html)
< section class = "stats" >
< div >
< p > @Html(i18n!(ctx.1, "Home to < em > {0}< / em > people"; n_users))< / p >
< / div >
< div >
< p > @Html(i18n!(ctx.1, "Who wrote < em > {0}< / em > articles"; n_articles))< / p >
< / div >
< / section >
< / main >
2018-12-07 12:05:01 +01:00
< a href = "@uri!(instance::about)" > @i18n!(ctx.1, "Read the detailed rules")< / a >
2018-12-06 18:54:16 +01:00
< / div >
< / div >
< / section >