Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / vigiboard / templates / sidebars.html @ 57f7cb3f

History | View | Annotate | Download (2.14 KB)

1
<html xmlns:py="http://genshi.edgewall.org/"
2
      xmlns:xi="http://www.w3.org/2001/XInclude"
3
      py:strip="">
4

    
5
<py:def function="sidebar_top">
6
  <div id="sb_top" class="sidebar">
7
      <h2>Get Started with TG2</h2>
8
      <ul class="links">
9
        <li py:choose="">
10
        <span py:when="defined('page') and page=='index'">
11
            <a href="${tg.url('/about')}">About this page</a> 
12
            A quick guide to this TG2 site 
13
        </span>           
14
        <span py:otherwise=""><a href="${tg.url('/')}">Home</a> Back to your Quickstart Home page </span>
15
        </li>
16
        <li><a href="http://www.turbogears.org/2.0/docs/">TG2 Documents</a> - Read everything in the Getting Started section</li>
17
        <li><a href="http://docs.turbogears.org/1.0">TG1 docs</a> (still useful, although a lot has changed for TG2) </li>
18
        <li><a href="http://groups.google.com/group/turbogears"> Join the TG Mail List</a> for general TG use/topics  </li>
19
      </ul>
20
  </div>
21
</py:def>    
22

    
23
<py:def function="sidebar_bottom">
24
  <div id="sb_bottom" class="sidebar">
25
      <h2>Developing TG2</h2>
26
      <ul class="links">
27
        <li><a href="http://docs.turbogears.org/2.0/RoughDocs/">More TG2 Documents</a> in progress</li>
28
        <li><a href="http://trac.turbogears.org/query?status=new&amp;status=assigned&amp;status=reopened&amp;group=type&amp;milestone=2.0&amp;order=priority">TG2 Trac tickets</a> What's happening now in TG2 development</li>
29
        <li><a href="http://trac.turbogears.org/timeline">TG Dev timeline</a> (recent ticket updates, svn checkins, wiki changes)</li>
30
        <li><a href="http://svn.turbogears.org/trunk">TG2 SVN repository</a> For checking out a copy</li>
31
        <li><a href="http://turbogears.org/2.0/docs/main/Contributing.html#installing-the-development-version-of-turbogears-2-from-source">Follow these instructions</a> For installing your copy</li>
32
        <li><a href="http://trac.turbogears.org/browser/trunk">TG2 Trac's svn view</a> In case you need a quick look</li>
33
        <li><a href="http://groups.google.com/group/turbogears-trunk"> Join the TG-Trunk Mail List</a> for TG2 discuss/dev </li>
34
      </ul>
35
  </div>
36
</py:def>    
37

    
38
</html>