14 lines
292 B
Plaintext
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"
|