root/app/views/layouts/main.html.erb @ 4

Revision 4, 2.3 kB (checked in by falcon, 17 years ago)

75% complete. ajax support for engineering and galleries. galleries add/edit. artwork and engineering layouts.

RevLine 
[1]1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
4  <head>
5    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6    <title>The Art of Engineering</title>
7    <%= stylesheet_link_tag 'style' %>
8    <%= stylesheet_link_tag 'scaffold' %>
9    <%= stylesheet_link_tag 'MultiUpload' %>
[4]10    <%= stylesheet_link_tag 'lightbox' %>
11           
12    <%= javascript_include_tag 'controls' %>
13    <%= javascript_include_tag 'application' %>
[1]14    <%= javascript_include_tag 'comboBox.js' %>
15    <%= javascript_include_tag 'multi_selector.js' %>
16    <%= javascript_include_tag 'mootools-1.2.js' %>
17    <%= javascript_include_tag "scriptaculous/lib/prototype.js" %>
18    <%= javascript_include_tag "scriptaculous/src/scriptaculous.js" %>
[4]19    <%= javascript_include_tag "lightbox/lightbox.js" %>
20   
[1]21  </head>
22  <body>
23 
24        <div id="Main">
25        <!--    <div id="BorderLeft" style="float: left; width: 20px; background-color: blue; "> 
26                </div> -->
27                <div id="InnerMain" >
28
29                        <div id="Sidebar">
[4]30                                <h3><a href="/bio.htm">Bio</a></h3>
31                                <h3><a href="/Artwork/">Art</a></h3>
32                                <% if @sidebar == "Artwork" %>
33                                        <% for gallery in @galleries %>
34                                                <span>> <%= link_to gallery.sTitle, :action => "show", :params => {:id => gallery.id} %></a></span><br/>
35                                        <% end %>                               
36                                <% end %>
37                                <h3><a href="/Engineering/">Engineering</a></h3>
38                                <% if @sidebar == "Engineering" %>
39                                        <% for gallery in @galleries %>
40                                                <span>> <a href="#<%= gallery.sTitle.to_s + "_" + gallery.id.to_s %>"><%= gallery.sTitle %></span><br/>
41                                        <% end %>
42                                <% end %>
43                                <h3><a href="/contact.htm">Contact</a></h3>
[1]44                        </div> <!-- end Sidebar -->
45                        <div id="Title">
46                                <a href="/">The Art of Engineering</a>
47                                <h3>Computers, Art, and Everything in Between...</h3>
48                        </div> <!-- end Title -->
49
50                        <div id="Content">
51                               
52                                        <%= yield  %>
53
54                        </div> <!-- end Content -->
55                        <div class="divclear"></div>
56                        <div id="Footer">
[4]57                                <% if logged_in? %>
58                                        <span>[<%= link_to 'Logout', :controller => "account", :action => "logout" %>] | </span>
59                                <% end %>
[1]60                                <span>[<a href="">xhtml</a>] | [<a href="">css</a>]</span>
61                        </div> <!-- end Footer -->
62                </div> <!-- end InnerMain-->
63        </div> <!-- end Main -->
64  </body>
65</html>
Note: See TracBrowser for help on using the browser.