summaryrefslogblamecommitdiffstats
path: root/templates/home.rs.html
blob: 67266466abced2126dcacb35320ec4ff63e82e7f (plain) (tree)
1
2
3
4
5
6
7
8
9
                      







                                   
@use super::base_html;

@(user: Option<String>)

@:base_html(user.clone(), None, {
  @if let Some(username) = user {
    <h1>logged in as @username</h1>
  }
})