retrospring/app/views/about/about.html.haml
2024-09-05 10:23:01 +02:00

17 lines
411 B
Text

.container
.card.bg-primary.text-bg-primary.my-3
.card-body
%h1= APP_CONFIG["site_name"]
%p= t(".subtitle")
.row
.col-sm-12
.card.card--fullheight
.card-body
- if APP_CONFIG["about"].present?
= raw_markdown APP_CONFIG["about"]
- else
= t(".about_missing")
= render "shared/links"
- provide(:title, generate_title(t(".title")))