This repository has been archived on 2024-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
musicapp/views/layout.moon

14 lines
303 B
Plaintext
Raw Normal View History

2019-06-13 20:52:22 +00:00
import Widget from require "lapis.html"
class extends Widget
content: =>
html_5 ->
head ->
if @title
title "#{@title} - musicapp"
else
title "musicapp"
style -> raw ".invalid{color:#333;background:#DDD;}"
2019-06-13 20:52:22 +00:00
body ->
@content_for "inner"