panel/views/index.moon

15 lines
289 B
Plaintext

import Widget from require "lapis.html"
class Index extends Widget
content: =>
h1 class: "header", "Hello"
div class: "body", ->
text "Welcome to my site!"
if @flash
p class: "flash", ->
text @flash
if @user
h2 "I think you are UID #{@user}"