Changeset 610 for trunk/app/views/layouts
- Timestamp:
- 06/16/08 23:05:09 (5 months ago)
- Location:
- trunk/app/views/layouts
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/layouts/admin.ctp
r582 r610 5 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 6 6 <head> 7 <title>Karamelo : Control Panel</title>7 <title>Karamelo</title> 8 8 <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> 9 9 <!--[if gte IE 5.5]> … … 30 30 <div id="header"> 31 31 <div style="width:300px;float:left;margin-right:15px;"> 32 <h1><?php echo $html->link('Karamelo : Control Panel', '/admin/entries/start'); ?></h1>33 <?php echo $html->para(null, ' e-Learning platform'); ?>32 <h1><?php echo $html->link('Karamelo', '/admin/entries/start'); ?></h1> 33 <?php echo $html->para(null, 'Web 2.0 eLearning platform'); ?> 34 34 </div> 35 35 <div style="width:700px;float:left;"> 36 Logged in as<strong><?php echo $session->read('Auth.User.username'); ?></strong> |36 <?php __('Logged in'); ?> <strong><?php echo $session->read('Auth.User.username'); ?></strong> | 37 37 <?php 38 38 echo $html->link($session->read('Auth.User.username') . '\'s blog', '/blog/'. $session->read('Auth.User.username')) . ' | '; 39 39 echo $html->link($_SERVER['HTTP_HOST'], '/').' | '; 40 echo $html->link('My Account', '/admin/users/edit') .' | '. $html->link('Logout', '/users/logout'); ?> 40 echo $html->link(__('My profile', true), '/admin/users/edit') .' | '. $html->link(__('Logout', true), '/users/logout'); 41 ?> 41 42 </div> 42 43 </div><!-- header ends--> -
trunk/app/views/layouts/rss.ctp
r492 r610 1 1 <?php echo '<?xml version="1.0" encoding="UTF-8" ?>'."\n"; ?> 2 <rss version="2.0" >2 <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> 3 3 <?php echo $content_for_layout; ?> 4 4 </rss> -
trunk/app/views/layouts/rubyx.ctp
r574 r610 75 75 76 76 <div id="strip" class="box noprint"> 77 <?php 78 if ( isset($blog['Quote'][0]['quote']) ): 79 e($html->div(null, '<i>'.$blog['Quote'][0]['quote'] . '</i><br /><b>'. $blog['Quote'][0]['author'].'</b>',aa('id', 'breadcrumbs'))); 80 endif; 81 ?> 77 82 78 83 <!-- RSS feeds --> 79 < pid="rss"><strong>RSS:</strong>84 <div id="rss"><strong>RSS:</strong> 80 85 <?php 81 86 e($html->link('Blog', '/entries/rss/'.$blog['User']['username']) . '/'); 82 87 e($html->link('Podcast', '/podcasts/rss/'.$blog['User']['username'])); 83 88 ?> 84 </p> 85 86 <hr class="noscreen" /> 89 </div> 87 90 </div> <!-- /strip --> 88 91 <!-- Content --> 89 <?php echo $html->div(null, $content_for_layout, aa('id', 'content'));?>92 <?php echo $html->div(null, $content_for_layout, aa('id', 'content'));?> 90 93 <!-- /content --> 91 94 <!-- Right column --> … … 93 96 <div id="col-in"> 94 97 <?php 95 if ( $blog["Vclassroom"] != null) 96 { 98 if ( $blog["Vclassroom"] != null): 97 99 echo $this->element('vclassrooms', $blog["Vclassroom"]); 98 }100 endif; 99 101 100 102 echo $html->div('temas', $blog['User']['username'] . ' profile');
