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' %> |
---|
10 | |
---|
11 | <%= javascript_include_tag :defaults %> |
---|
12 | <%= javascript_include_tag 'comboBox.js' %> |
---|
13 | <%= javascript_include_tag 'multi_selector.js' %> |
---|
14 | <%= javascript_include_tag 'mootools-1.2.js' %> |
---|
15 | <%= javascript_include_tag "scriptaculous/lib/prototype.js" %> |
---|
16 | <%= javascript_include_tag "scriptaculous/src/scriptaculous.js" %> |
---|
17 | </head> |
---|
18 | <body> |
---|
19 | |
---|
20 | <div id="Main"> |
---|
21 | <!-- <div id="BorderLeft" style="float: left; width: 20px; background-color: blue; "> |
---|
22 | </div> --> |
---|
23 | <div id="InnerMain" > |
---|
24 | |
---|
25 | <div id="Sidebar"> |
---|
26 | <h3>Bio</h3> |
---|
27 | <h3>Art</h3> |
---|
28 | <h3>Engineering</h3> |
---|
29 | <h3>Contact</h3> |
---|
30 | </div> <!-- end Sidebar --> |
---|
31 | <div id="Title"> |
---|
32 | <a href="/">The Art of Engineering</a> |
---|
33 | <h3>Computers, Art, and Everything in Between...</h3> |
---|
34 | </div> <!-- end Title --> |
---|
35 | |
---|
36 | <div id="Content"> |
---|
37 | |
---|
38 | <%= yield %> |
---|
39 | |
---|
40 | </div> <!-- end Content --> |
---|
41 | <div class="divclear"></div> |
---|
42 | <div id="Footer"> |
---|
43 | <span>[<a href="">xhtml</a>] | [<a href="">css</a>]</span> |
---|
44 | </div> <!-- end Footer --> |
---|
45 | </div> <!-- end InnerMain--> |
---|
46 | </div> <!-- end Main --> |
---|
47 | </body> |
---|
48 | </html> |
---|