diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-27 16:45:59 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-27 16:45:59 -0700 |
commit | b1e08b468b7041ef5df179213f686722b0ead358 (patch) | |
tree | fee5085088a1b24f323f5e67f6dd2534dbb49d5e /app/views/layouts | |
parent | 4f0d6c87b15d96a4dba252be833b367bcd675e2b (diff) | |
download | rails-b1e08b468b7041ef5df179213f686722b0ead358.tar.gz rails-b1e08b468b7041ef5df179213f686722b0ead358.tar.bz2 rails-b1e08b468b7041ef5df179213f686722b0ead358.zip |
Provide a basic admin interface
BEHOLD THE CONDUCTOR!
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/action_mailroom.html.erb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/views/layouts/action_mailroom.html.erb b/app/views/layouts/action_mailroom.html.erb new file mode 100644 index 0000000000..3efa8c3989 --- /dev/null +++ b/app/views/layouts/action_mailroom.html.erb @@ -0,0 +1,7 @@ +<html> +<head> + <title><%= yield :title %></title> +</head> +<body> +<%= yield %> +</html> |