@use plume_models::instance::Instance; @use crate::template_utils::*; @use crate::routes::*; @(ctx: BaseContext, instance: Instance, n_users: i64, n_articles: i64)

@i18n!(ctx.1, "What is Plume?")

@i18n!(ctx.1, "Plume is a decentralized blogging engine.")

@i18n!(ctx.1, "Authors can manage multiple blogs, each as its own website.")

@i18n!(ctx.1, "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon.")

@i18n!(ctx.1, "Create your account")

@i18n!(ctx.1, "About {0}"; instance.name)

@Html(instance.short_description_html)

@Html(i18n!(ctx.1, "Home to {0} people"; n_users))

@Html(i18n!(ctx.1, "Who wrote {0} articles"; n_articles))

@i18n!(ctx.1, "Read the detailed rules")