coffee-express
Version:
A Template for NodeJs Application using Express, CoffeeScript, Jade, and Stylus.
18 lines (17 loc) • 473 B
text/jade
extends ../layout
block content
form(method="post", action="/posts/create")
fieldset
legend=title
.clearfix
label(for="title") Title
.input
input.xlarge#title(type="text", name="post[title]")
.clearfix
label(for="post") Post
.input
textarea#post.xxlarge(name="post[body]",rows="3")
.actions
input.btn.primary(type="submit", value="Publish!")
|
a.btn(href="/") Cancel