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
2019-06-14 17:41:39 -07:00

14 lines
292 B
Plaintext

import Widget from require "lapis.html"
class extends Widget
content: =>
html_5 ->
head ->
if @title
title "#{@title} - musicapp"
else
title "musicapp"
style -> raw ".invalid{background:#DDD;}"
body ->
@content_for "inner"