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 !
add new layout and comments admin

git-svn-id: http://svn.techno-weenie.net/projects/mephisto/trunk@1235 
567b1171-46fb-0310-a4c9-b4bef9110e78
technoweenie (author)
Tue Jun 13 22:05:22 -0700 2006
commit  b6ca3fa7e0cc692550d9926f6b6d8fbc118c3901
tree    a97087fde40c0150bdbe0357f748a90ee422067b
parent  ccfed39b1d60348e83ba4cc1694c896e819adab1
...
 
1
2
3
 
 
 
4
5
6
...
11
12
13
14
15
 
16
17
18
...
1
2
 
 
3
4
5
6
7
8
...
13
14
15
 
 
16
17
18
19
0
@@ -1,6 +1,8 @@
0
+<% content_for :action_nav do %>
0
 <!-- begin action nav -->
0
-<div class="round" id="page-nav">
0
- <ul id="act-nav">
0
+<div id="page-nav">
0
+ <ul id="act-nav" class="clear">
0
+ <li><%= link_to 'Edit', :id => @article, :action => 'edit' %></li>
0
     <li><%= link_to 'Edit', :id => @article, :action => 'edit' %></li>
0
     <li><%= link_to 'All Comments', :filter => nil %></li>
0
     <li><%= link_to 'Unapproved Comments', :filter => :unapproved %></li>
0
@@ -11,8 +13,7 @@
0
   </ul>
0
 </div>
0
 <!-- /end action nav -->
0
-
0
-<h2><%= "#{params[:filter].humanize} " if valid_filter? %>Comments for '<%=h @article.title %>'</h2>
0
+<% end %>
0
 
0
 <% @comments.each do |comment| -%>
0
 <div id="comment-<%= comment.id %>">
...
18
19
20
21
 
22
23
24
...
45
46
47
48
49
 
 
50
51
52
53
 
 
 
 
 
54
55
 
 
 
56
57
 
 
58
59
60
...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
...
18
19
20
 
21
22
23
24
...
45
46
47
 
 
48
49
50
 
 
 
51
52
53
54
55
56
 
57
58
59
60
 
61
62
63
64
65
...
73
74
75
 
76
77
 
 
 
 
 
 
 
 
 
 
 
78
79
80
0
@@ -18,7 +18,7 @@
0
      <li><%= link_to 'logout', :controller => '/account', :action => 'logout' %></li>
0
      </ul>
0
 
0
- <h1><a href="/" title="ArticleCast">Mephisto: Admin</a></h1>
0
+ <h1><a href="/" title="Mephisto">Mephisto: Admin</a></h1>
0
 
0
      <!-- div.nav -->  
0
      <div id="nav">
0
@@ -45,16 +45,21 @@
0
       
0
        <!-- div.left -->
0
        <div id="main">
0
- <div id="flash-errors" style="display:none">
0
- </div>
0
+ <div id="flashes">
0
+ <div id="flash-errors" style="display: none;"></div>
0
       
0
- <% if flash[:notice] %>
0
- <div id="flash-notice">
0
- <%= @flash[:notice] %>
0
+ <% if flash[:notice] %>
0
+ <div id="flash-notice">
0
+ <%= @flash[:notice] %>
0
+ </div>
0
+ <% end %>
0
        </div>
0
- <% end %>
0
+ <!-- begin action nav -->
0
+ <%= yield :action_nav %>
0
+ <!-- /end action nav -->
0
       
0
- <%= yield %>
0
+ <div id="main-content"><%= yield %></div>
0
+ <div id="shadow"></div>
0
        </div>
0
        <!-- /div.left -->
0
       
0
@@ -68,19 +73,7 @@
0
       
0
       <!-- begin div.footer -->
0
       <div id="footer">
0
- <p>Mephisto</p>
0
       </div>
0
     </div>
0
- <div id="log-panel">
0
- <ul id="log-panel-list">
0
-
0
- </ul>
0
- </div>
0
- <script type="text/javascript" language="javascript" charset="utf-8">
0
- // <![CDATA[
0
- //new Asset.Manager();
0
- //new Control.Resizer('main', 'sbar', {handle: 'sbar-handle'});
0
- // ]]>
0
- </script>
0
   </body>
0
 </html>
0
\ No newline at end of file

Comments

    No one has commented yet.