summaryrefslogtreecommitdiffstats
path: root/protoype/views
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2012-07-01 21:57:24 -0500
committerKyle Kaminski <kyle@kkaminsk.com>2012-07-01 21:57:24 -0500
commitb001224bb95996fa59269a5c119c6a9f2047f288 (patch)
tree2fc3b73f4fedb63f6ce9a0cc02ec35ef0864ceab /protoype/views
parent41946c6982647abec5d64b04323a081c73c43577 (diff)
downloadfubar-b001224bb95996fa59269a5c119c6a9f2047f288.tar.gz
fubar-b001224bb95996fa59269a5c119c6a9f2047f288.tar.bz2
fubar-b001224bb95996fa59269a5c119c6a9f2047f288.zip
start on prototype
Diffstat (limited to 'protoype/views')
-rw-r--r--protoype/views/index.jade7
-rw-r--r--protoype/views/layout.jade9
2 files changed, 16 insertions, 0 deletions
diff --git a/protoype/views/index.jade b/protoype/views/index.jade
new file mode 100644
index 0000000..57cde6f
--- /dev/null
+++ b/protoype/views/index.jade
@@ -0,0 +1,7 @@
+h1= title
+p Welcome to #{title}. Users in the portal:
+
+h3 User list:
+ul
+ - each user in users
+ li= user.tag
diff --git a/protoype/views/layout.jade b/protoype/views/layout.jade
new file mode 100644
index 0000000..c7139b7
--- /dev/null
+++ b/protoype/views/layout.jade
@@ -0,0 +1,9 @@
+!!!
+html
+ head
+ title= title
+ meta(http-equiv='Content-Type', content='text/html; charset=UTF-8')
+ link(rel='stylesheet', href='/stylesheets/style.css')
+ // body gets passed in here from *.jade? the '!=' outputs unescaped
+ body!= body
+