summaryrefslogtreecommitdiff
path: root/app/views/layouts
diff options
context:
space:
mode:
authorhukl <hukl@eight.local>2009-02-08 14:06:03 +0100
committerhukl <hukl@eight.local>2009-02-08 14:06:03 +0100
commit56e1df622f8cb6fb558b83fc4d2836ad0aece7d7 (patch)
tree7cef4583f4b025847f4e0ce506fff8fc082ef30c /app/views/layouts
parent1a6516c7c8103fb63e7e11134e0fd8ff9f26d6fe (diff)
added nodes controller and made it a resource.
since the node is the proxy for the pages behind it, it makes sense to operate on nodes rather than on the pages themselves.
Diffstat (limited to 'app/views/layouts')
-rw-r--r--app/views/layouts/admin.html.erb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/layouts/admin.html.erb b/app/views/layouts/admin.html.erb
new file mode 100644
index 0000000..95161a8
--- /dev/null
+++ b/app/views/layouts/admin.html.erb
@@ -0,0 +1,15 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
4<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
8 <title>untitled</title>
9
10 </head>
11
12 <body>
13 <%= yield :layout %>
14 </body>
15</html>