summaryrefslogtreecommitdiffstats
path: root/templates/home.rs.html
blob: 882b2eda5c557d86cf1ece706544294451c870cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
@use super::base_html;
@use crate::User;

@(user: Option<String>)

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