Changeset 1103

Show
Ignore:
Timestamp:
06/21/07 22:41:10 (1 year ago)
Author:
mikem836
Message:

initial draft of projects page

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • code-www/index.html

    r1100 r1103  
    1 <html> 
    2   <body> 
    3     <h2>Ruby Reports Project Listing</h2> 
    4     <p>This is the future home of the project listing for packages which are 
    5     part of the Ruby Reports project.</p> 
    6     <h3>Resources</h3> 
    7     <ul> 
    8       <li><a href="ruport/index.html">Ruport Trac</a></li> 
    9       <li><a href="documatic/index.html">Documatic Trac</a></li> 
    10     </ul> 
    11   </body> 
     1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
     2    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
     3 
     4<html xmlns="http://www.w3.org/1999/xhtml"> 
     5<head> 
     6  <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> 
     7  <title>Ruby Reports Projects</title> 
     8  <link href="projects.css" rel="stylesheet" type="text/css" /> 
     9</head> 
     10 
     11<body> 
     12  <div id="wrapper"> 
     13    <div id="logo"> 
     14      <h2>Ruby Reports Projects</h2> 
     15    </div> 
     16     
     17    <div id="introduction"> 
     18      <p>Welcome to the Ruby Reports Projects page.</p> 
     19    </div> 
     20     
     21    <div id="projectsHeader"> 
     22      <p>Projects</p> 
     23    </div> 
     24     
     25    <div id="ruport" class="project"> 
     26      <div class="projectLogo"> 
     27        <p>Ruport: Ruby Reports</p> 
     28      </div> 
     29      <p class="projectText"> 
     30        Ruport is an extensible reporting system. It aims to keep things 
     31        as simple as possible while still providing the core toolset you'll 
     32        need for most reporting tasks. 
     33      </p> 
     34      <p class="projectFooter"> 
     35         <a href="http://stonecode.svnrepository.com/svn/ruport/ruport">source</a> | 
     36         <a href="http://code.rubyreports.org/ruport">wiki</a> | 
     37         <a href="http://stonecode.svnrepository.com/ruport/trac.cgi/report">bugs</a> 
     38      </p> 
     39    </div> 
     40     
     41    <div id="documatic" class="project"> 
     42      <div class="projectLogo"> 
     43        docu<span class="projectLogoEnd">matic</span> 
     44      </div> 
     45      <div class="projectText"> 
     46        Documatic is an OpenDocument extension for Ruport. It is a 
     47        template-driven formatter that can be used to produce attractive 
     48        printable documents such as database reports, invoices, letters, faxes 
     49        and more. 
     50      </div> 
     51      <p class="projectFooter"> 
     52        <a href="http://stonecode.svnrepository.com/svn/documatic">source</a> | 
     53        <a href="http://code.rubyreports.org/documatic">wiki</a> | 
     54        <a href="http://stonecode.svnrepository.com/documatic/trac.cgi/report">bugs</a> 
     55      </p> 
     56    </div> 
     57     
     58    <div class="clear"></div> 
     59     
     60    <div id="footer"> 
     61      <p> 
     62        Ruby Reports is free software under the  
     63        <a href="http://www.ruby-lang.org/en/LICENSE.txt">License of Ruby</a>. 
     64      </p> 
     65      <p> 
     66        Site designed by Michael Milner. 
     67        Ruport logo designed by  
     68        <a href="http://fashionpirat.de/">Daniel Dormann</a>. 
     69      </p> 
     70      <p> 
     71        Site layout inspired by 
     72        <a href="http://code.whytheluckystiff.net">code.whytheluckystiff.net</a>. 
     73      </p> 
     74      <p> 
     75        All web content is licensed under the  
     76        <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative  
     77        Commons Attribution-Sharealike License</a>. 
     78      </p> 
     79    </div> 
     80  </div> 
     81</body> 
    1282</html> 
    13      
    14