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

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;}"
body ->
@content_for "inner"