1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml">
|
---|
3 | <head>
|
---|
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
---|
5 | <title>ListContactGroup <%= controller.action_name %></title>
|
---|
6 | <%= stylesheet_link_tag 'style' %>
|
---|
7 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
---|
8 | </head>
|
---|
9 |
|
---|
10 | <body>
|
---|
11 | <div id="container">
|
---|
12 | <div id="header">
|
---|
13 | <h1>contact.wigbels.de</h1>
|
---|
14 | <h2>remember us <em>sometimes...</em></h2>
|
---|
15 | <br />
|
---|
16 | <hr />
|
---|
17 |
|
---|
18 | </div> <!-- end header -->
|
---|
19 |
|
---|
20 | <div class="spacer"></div>
|
---|
21 | <div id="left">
|
---|
22 |
|
---|
23 | <div id="leftcontent">
|
---|
24 |
|
---|
25 | <ul>
|
---|
26 |
|
---|
27 | <li>Navigation</li>
|
---|
28 | <li><%= link_to "Home","http://www.wigbels.de/contact" %></li>
|
---|
29 |
|
---|
30 | <% @contactgroups.each do |c| %>
|
---|
31 | <li><%= link_to c.groupname, :controller=>"listcontactgroup", :action=>'index', :id=>c.groupname %></li>
|
---|
32 | <% end %>
|
---|
33 | <!-- TODO
|
---|
34 | <li>Suchen</li>
|
---|
35 | <li>disclaimer</li>
|
---|
36 | -->
|
---|
37 | <br />
|
---|
38 | <li>Maintainance</li>
|
---|
39 | <% if session[:valid_login] %>
|
---|
40 | <li><%=link_to 'Maintain Groups', :controller=>'admincontactgroup', :action=>'index' %></li>
|
---|
41 | <li><%= link_to 'Maintain Contacts', :controller=>'admincontact', :action=>'index' %></li>
|
---|
42 | <% end %>
|
---|
43 | <li><%= link_to 'Login', :controller=>'login', :action=>'login' %></li>
|
---|
44 | </ul>
|
---|
45 |
|
---|
46 | <p> </p>
|
---|
47 | <h3>News</h3>
|
---|
48 | <p class="news">06/2008 | see also <a href="http://abi92.rioline.de">abi92.rioline.de</a><br />09/2007 | new app to maintain contacts<br /></p>
|
---|
49 | </div> <!-- end left content -->
|
---|
50 | </div> <!-- end left division -->
|
---|
51 | <div id="main">
|
---|
52 | <div id="maincontent">
|
---|
53 | <%= flash[:notice] %>
|
---|
54 | <%=yield %>
|
---|
55 | </div> <!-- end main content section -->
|
---|
56 | </div>
|
---|
57 | <div id="footer"><div class="spacer"></div>
|
---|
58 | <hr />
|
---|
59 | <p class="left">| <a href="http://jigsaw.w3.org/css-validator/">CSS</a> | <a href="http://validator.w3.org/check?uri=referer">XHTML 1.1</a> |</p>
|
---|
60 | <p class="right">application by Norbert Wigbels ©2007; design by Matt Hollis ©2006</p>
|
---|
61 | <p> </p>
|
---|
62 | </div> <!-- end footer -->
|
---|
63 |
|
---|
64 | </div> <!-- end container -->
|
---|
65 | </body>
|
---|
66 |
|
---|
67 | </html>
|
---|