fixed the footer.
[philo.git] / index.html
1 <!DOCTYPE html>
2
3 <html>
4         <head>
5                 <title>Philo</title>
6                 <link rel="stylesheet" type="text/css" href="static/css/screen.css" media="screen" />
7                 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
8                 <script src="static/js/init.js"></script>
9         </head>
10         <body>
11                 <div id="fork">
12 <a href="http://github.com/ithinksw/philo"><img style="position: fixed; top: 0; right: 0; border: 0;" src="https://d3nwyuy0nl342s.cloudfront.net/img/e6bef7a091f5f3138b8cd40bc3e114258dd68ddf/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub"></a>                <div id="container">
13                         <header id="nameplate">
14                                 <h1>Philo</h1>
15                         </header><!-- /#nameplate -->
16                         
17                         <article id="content">
18                                 
19                                 <p>Philo is a powerful content-management system built with Django.</p>
20                         
21                                 <section id="featuresSection">
22                                         <header>
23                                                 <h2 id="features">Features</h2>
24                                         </header>
25                         
26                                         <p>Philo allows the creation of complex site structures from Django&#8217;s web-based admin interface (or similar database-editing interface). For a simple site, you will use the following three objects, included in the Philo core.</p>
27                         
28                                         <ul id="modelList">
29                                                 <li><span class="name">Nodes</span> are the basic building blocks of a website using Philo. They define the URL hierarchy and connect each URL to a View subclass instance, such as a Page.</li>
30                                                 <li><span class="name">Templates</span> are Django templates, stored in the database and editable from the Django admin (or similar).</li>
31                                                 <li><span class="name">Pages</span> are a simple view subclass which return a basic HTML page according to a template. They have related, editable Contentlets and Content References based on <code>{% container %}</code> tags used in the template.</li>
32                                         </ul>
33                         
34                                         <p>Philo also provides a number of useful template tags, in particular <code>{% container %}</code>, which generates a relationship (and a field in the admin interface) on any pages which use that template.</p>
35                                 </section>
36                                 
37                                 <section id="exampleSection">
38                                         <h2 id="a_simple_example">A Simple Example</h2>
39                         
40                                         <div class="three-up">
41                                                 <figure>
42                                                         <img src="static/img/container1.png" />
43                                                         <figcaption>Put container tags in your template.</figcaption>
44                                                 </figure>
45                                                 <figure>
46                                                         <img src="static/img/container2.png" />
47                                                         <figcaption>Edit the contentlets on the page.</figcaption>
48                                                 </figure>
49                                                 <figure>
50                                                         <img src="static/img/container3.png" />
51                                                         <figcaption>See the results on your site!</figcaption>
52                                                 </figure>
53                                         </div>
54                         
55                                         <p>You can use also collections, redirects, files, content references (all included in the Philo core), as well as the Philo contrib apps and your own code to create and manage more powerful, complex websites.</p>
56                                 </section>
57                                 
58                                 <section id="contribSection">
59                                         <h2 id="batteries_included">Batteries Included</h2>
60                         
61                                         <p>Following Python and Django&#8217;s <a href="http://docs.python.org/tutorial/stdlib.html#batteries-included">&ldquo;batteries included&rdquo; philosophy</a>, Philo includes a number of optional packages that simplify common website structures. These are stored in <code>philo.contrib</code> and include the following:</p>
62                         
63                                         <ul id="contribList">
64                                                 <li>
65                                                         <span class="name">Penfield</span>
66                                                         <span class="description">Blog and newsletter management.</span>
67                                                 </li>
68                                                 <li>
69                                                         <span class="name">Shipherd</span>
70                                                         <span class="description">Powerful site navigation.</span>
71                                                 </li>
72                                                 <li>
73                                                         <span class="name">Sobol</span>
74                                                         <span class="description">Custom web and database searches.</span>
75                                                 </li>
76                                                 <li>
77                                                         <span class="name">Waldo</span>
78                                                         <span class="description">Custom authentication systems.</span>
79                                                 </li>
80                                                 <li>
81                                                         <span class="status">(in development)</span>
82                                                         <span class="name">Gilbert</span>
83                                                         <span class="description">Alternative web-based admin.</span>
84                                                 </li>
85                                                 <li>
86                                                         <span class="status">(in development)</span>
87                                                         <span class="name">Julian</span>
88                                                         <span class="description">Calendar and events system.</span>
89                                                 </li>
90                                                 <li>
91                                                         <span class="status">(in development)</span>
92                                                         <span class="name">Edmonia</span>
93                                                         <span class="description">Asset management.</span>
94                                                 </li>
95                                                 <li>
96                                                         <span class="status">(in development)</span>
97                                                         <span class="name">Bartleby</span>
98                                                         <span class="description">Form generation and handling.</span>
99                                                 </li>
100                                                 <li>
101                                                         <span class="status">(planned)</span>
102                                                         <span class="description">Forums.</span>
103                                                 </li>
104                                                 <li>
105                                                         <span class="status">(planned)</span>
106                                                         <span class="description">Wikis.</span>
107                                                 </li>
108                                         </ul>
109                                 </section>
110                                 
111                                 <section class="installSection">
112                                         <h2>Install Philo</h2>
113                                         <div class="codeblock shell">
114                                                 <code>git clone https://github.com/ithinksw/philo.git</code>
115                                                 <code>python philo/setup.py</code>
116                                                 <code>rm -rf philo</code>
117                                         </div>
118                                 </section>
119                                 
120                         </article><!-- /#content -->
121                         
122                         <footer>
123                                 <p>Philo is developed by iThink Software. Read the <a href="https://github.com/ithinksw/philo/blob/master/LICENSE">license</a>.</p>
124                         </footer>
125                         
126                 </div>
127         </body>
128 </html>