Changeset 139
- Timestamp:
- 07/26/07 17:05:24 (1 year ago)
- Files:
-
- branch/config/core.php (modified) (1 diff)
- branch/views/layouts/default.ctp (modified) (1 diff)
- branch/views/posts/index.ctp (modified) (2 diffs)
- branch/webroot/css/950px.css (modified) (1 diff)
- branch/webroot/img/nhm-bg.jpg (added)
- branch/webroot/img/nhm-bg.png (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branch/config/core.php
r138 r139 55 55 * In development mode, you need to click the flash message to continue. 56 56 */ 57 define('DEBUG', 2);57 define('DEBUG', 0); 58 58 /** 59 59 * Turn off or enable cache checking application-wide. branch/views/layouts/default.ctp
r133 r139 17 17 <div id="doc3" class="yui-t7"> 18 18 <div id="hd"> 19 <div id="accessibility" ></div>19 <div id="accessibility" style="position:relative;"></div> 20 20 </div> 21 21 <div class="nav-area"><?php e($this->renderElement('mainnav'));?></div> branch/views/posts/index.ctp
r119 r139 1 <h2 class="frontpage-latest"">Latest News</h2> 2 1 3 <?php foreach ($posts as $post): ?> 2 4 <div class="hentry"> … … 26 28 <?php endforeach; ?> 27 29 28 <div id="paginate" >30 <div id="paginate" style="display:none;"> 29 31 <span class="previous"> 30 32 <?php e($paginator->prev('<< Previous', null, null, array('class' => 'disabled'))); ?> branch/webroot/css/950px.css
r138 r139 9 9 @import url('../js/wymeditor/skins/default/screen.css'); 10 10 11 body { background: url('../img/nhm-bg.png');}11 body {} 12 12 13 13 div#doc2 {background:#fff;} 14 14 15 15 div#hd {height: 150px; background: #fff url('../img/nhm-header.gif') no-repeat center center;} 16 17 18 /* Style */ 19 20 h2.frontpage-latest { 21 font-size:1.4em; 22 background:#000099; 23 color:#fff; 24 padding:5px 2px 5px; 25 } 26 27 h3 { 28 font-size:1.4em; 29 background:#000099; 30 color:#fff; 31 padding:5px 2px 5px; 32 }