Changeset 2683
- Timestamp:
- Aug 10, 2008, 5:16:37 PM (15 years ago)
- Location:
- trac
- Files:
-
- 4 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trac/htdocs/site/main.css
r2682 r2683 1 <?cs2 ##################################################################3 # Site CSS - Place custom CSS, including overriding styles here.4 ?>5 1 :link, :visited { color: #3a5; } 6 2 :link:hover, :visited:hover { color: #a2d; } -
trac/templates/site.html
r2682 r2683 1 1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:py="http://genshi.edgewall.org/" py:strip=""> 3 <!--! Custom match templates go here --> 2 xmlns:py="http://genshi.edgewall.org/" 3 py:strip=""> 4 5 <!--! Add site-specific style sheet --> 6 <head py:match="head" py:attrs="select('@*')"> 7 ${select('*|comment()|text()')} 8 <link rel="stylesheet" type="text/css" 9 href="${href.chrome('site/style.css')}" /> 10 </head> 11 12 <body py:match="body" py:attrs="select('@*')"> 13 <!--! Add site-specific header --> 14 <div id="siteheader"> 15 <!--! Place your header content here... --> 16 </div> 17 18 ${select('*|text()')} 19 20 <!--! Add site-specific footer --> 21 <div id="sitefooter"> 22 <!--! Place your footer content here... --> 23 </div> 24 </body> 4 25 </html>
Note: See TracChangeset
for help on using the changeset viewer.