public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/technoweenie/mephisto.git
Click here to lend your support to: mephisto and make a donation at www.pledgie.com !
Caged (author)
Mon Sep 18 16:50:59 -0700 2006
commit  9b7d905bdf636f720a1bb43ef4158189cefae97b
tree    eb24072ad13ecfeb199fc8d073a548b3d4101d1a
parent  79943b8c0199d594f3455dca87979345b1ef5d7f
mephisto / app / views / admin / design / index.rhtml
100644 21 lines (19 sloc) 0.7 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<% content_for :action_nav do %>
  <div id="page-nav">
    <ul id="act-nav" class="clear">
      <li><%= link_to "New template", :controller => 'design' %></li>
      <li><%= link_to "Manage themes", :controller => 'themes' %></li>
    </ul>
  </div>
<% end %>
 
<%= start_form_tag :action => 'create' %>
<%= render :partial => 'form', :locals => {
  :attachment => nil,
  :title => 'Create a new template',
  :hint => 'You can use HTML and Liquid in your template.',
  :labels => { :data => 'Template source code',
                   :filename => 'Name of your template' }
 } %>
<p class="btns"><%= submit_tag 'Create template' %></p>
</form>
 
<%= render :partial => 'sidebar' %>