source: main/waeup.kofa/trunk/docs/source/_templates/mainpage.template @ 14657

Last change on this file since 14657 was 13178, checked in by Henrik Bettermann, 9 years ago

Restructure index page and modify README.txt again.

File size: 2.6 KB
Line 
1{% extends "layout.html" %}
2{% set title = 'Overview' %}
3{% block body %}
4
5<h1>{{ docstitle }}</h1>
6<p>
7  This is official documentation for waeup.kofa {{ release }}.
8  {% if last_updated %}Last modifed on {{ last_updated }}.{% endif %}
9</p>
10
11<table class="contentstable" align="center">
12  <tr>
13    <td width="50%">
14      <p class="biglink">
15        <a class="biglink"
16           href="{{ pathto("intro") }}">Introduction</a><br />
17        <span class="linkdescr"></span>
18      </p>
19    </td>
20    <td width="50%">
21      <p class="biglink">
22        <a class="biglink"
23           href="{{ pathto("contents") }}">Table of Contents</a><br />
24        <span class="linkdescr"></span>
25      </p>
26    </td>
27  </tr>
28
29  <tr>
30    <td width="50%">
31      <p class="biglink">
32        <a class="biglink"
33             href="{{ pathto("userdocs/index") }}">User Handbook</a><br />
34        <span class="linkdescr">
35          Documentation for officers and admins
36        </span>
37      </p>
38    </td>
39    <td width="50%">
40      <p class="biglink">
41        <a class="biglink"
42           href="{{ pathto("developerdocs/index") }}">Developer Handbook</a><br />
43        <span class="linkdescr">
44          <a href="{{ pathto("developerdocs/api/index") }}">API</a> and other pieces
45          relevant for developers
46        </span>
47      </p>
48    </td>
49  </tr>
50
51  <tr>
52    <td width="50%">
53      <p class="biglink">
54        <a class="biglink"
55           href="{{ pathto("changes") }}">What's new?</a><br />
56        <span class="linkdescr">Changes made in each release</span>
57      </p>
58    </td>
59    <td width="50%">
60      <p class="biglink">
61        <a class="biglink"
62           href="{{ pathto("genindex") }}">Index</a><br />
63        <span class="linkdescr">All Python functions and classes</span>
64      </p>
65    </td>
66  </tr>
67  <tr>
68    <td width="50%">
69      <p class="biglink">
70        <a class="biglink"
71           href="{{ pathto("bugs") }}">Reporting Bugs</a><br />
72        <span class="linkdescr"></span>
73      </p>
74    </td>
75    <td width="50%">
76      <p class="biglink">
77        <a class="biglink"
78           href="{{ pathto("license") }}">License</a><br />
79        <span class="linkdescr"></span>
80      </p>
81    </td>
82  </tr>
83  <tr>
84    <td width="50%">
85      <p class="biglink">
86        <a class="biglink"
87           href="{{ pathto("documentation") }}">About the Documentation</a><br />
88        <span class="linkdescr"></span>
89      </p>
90    </td>
91    <td width="50%">
92      <p class="biglink">
93        <a class="biglink"
94           href="{{ pathto("copyright") }}">Copyright</a><br />
95        <span class="linkdescr"></span>
96      </p>
97    </td>
98  </tr>
99</table>
100
101
102{% endblock %}
Note: See TracBrowser for help on using the repository browser.