~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/welcome.kid

  • Committer: Robey Pointer
  • Date: 2007-01-16 03:52:29 UTC
  • Revision ID: robey@lag.net-20070116035229-sv7yzfby4qrb8v8e
use "public_branch" as the config key since that seems to be what everyone
else is doing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
2
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
 
3
    py:extends="'master.kid'">
 
4
<head>
 
5
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
 
6
<title>Welcome to TurboGears</title>
 
7
</head>
 
8
<body>
 
9
<div id="header">&nbsp;</div>
 
10
<div id="main_content">
 
11
  <div id="status_block">Your TurboGears application is now running.</div>
 
12
  <!--h1>Take steps to dive right in:</h1-->
 
13
  <div id="sidebar">
 
14
    <h2>Learn more</h2>
 
15
    Learn more about TurboGears and take part in its
 
16
    development
 
17
    <ul class="links">
 
18
      <li><a href="http://www.turbogears.org">Official website</a></li>
 
19
      <li><a href="http://docs.turbogears.org">Documentation</a></li>
 
20
      <li><a href="http://trac.turbogears.org/turbogears/">Trac
 
21
        (bugs/suggestions)</a></li>
 
22
      <li><a href="http://groups.google.com/group/turbogears"> Mailing list</a> </li>
 
23
    </ul>
 
24
  </div>
 
25
  <div id="getting_started">
 
26
    <ol id="getting_started_steps">
 
27
      <li class="getting_started">
 
28
        <h3>Model</h3>
 
29
        <p> <a href="http://docs.turbogears.org/1.0/GettingStarted/DefineDatabase">Design models</a> in the <span class="code">model.py</span>.<br/>
 
30
          Edit <span class="code">dev.cfg</span> to <a href="http://docs.turbogears.org/1.0/GettingStarted/UseDatabase">use a different backend</a>, or start with a pre-configured SQLite database. <br/>
 
31
          Use script <span class="code">tg-admin sql create</span> to create the database tables.</p>
 
32
      </li>
 
33
      <li class="getting_started">
 
34
        <h3>View</h3>
 
35
        <p> Edit <a href="http://docs.turbogears.org/1.0/GettingStarted/Kid">html-like templates</a> in the <span class="code">/templates</span> folder;<br/>
 
36
        Put all <a href="http://docs.turbogears.org/1.0/StaticFiles">static contents</a> in the <span class="code">/static</span> folder. </p>
 
37
      </li>
 
38
      <li class="getting_started">
 
39
        <h3>Controller</h3>
 
40
        <p> Edit <span class="code"> controllers.py</span> and <a href="http://docs.turbogears.org/1.0/GettingStarted/CherryPy">build your
 
41
          website structure</a> with the simplicity of Python objects. <br/>
 
42
          TurboGears will automatically reload itself when you modify your project. </p>
 
43
      </li>
 
44
    </ol>
 
45
    <div class="notice"> If you create something cool, please <a href="http://groups.google.com/group/turbogears">let people know</a>, and consider contributing something back to the <a href="http://groups.google.com/group/turbogears">community</a>.</div>
 
46
  </div>
 
47
  <!-- End of getting_started -->
 
48
</div>
 
49
</body>
 
50
</html>