Files
nerack/examples/05_todo_sse_datastar/layout.mustache.html
T
2026-09-13 15:31:00 -05:00

26 lines
526 B
HTML

<html>
<head>
<link rel='icon' href='{{asset:favicon.png}}'>
{{$head}}
{{/head}}
</head>
<body>
<p>
{{^user}}
<a href='{{url:get:login}}'>sign in</a>
{{/user}}
{{#user}}
welcome, {{short_name}}
{{/user}}
</p>
<nav>
<a href='{{url:get:home}}'>home</a>
<a href='{{url:get:about}}'>about us</a>
<a href='{{url:get:contact}}'>contact us</a>
<a href='{{url:get:todos}}'>todos</a>
</nav>
{{$body}}
{{/body}}
</body>
</html>