/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/_templates/index.html

  • Committer: John Arbash Meinel
  • Date: 2010-01-12 22:51:31 UTC
  • mto: This revision was merged to the branch mainline in revision 4955.
  • Revision ID: john@arbash-meinel.com-20100112225131-he8h411p6aeeb947
Delay grabbing an output stream until we actually go to show a diff.

This makes the test suite happy, but it also seems to be reasonable.
If we aren't going to write anything, we don't need to hold an
output stream open.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "layout.html" %}
 
2
 
 
3
{% set title = 'Table of Contents' %}
 
4
{% block body %}
 
5
 
 
6
  <h2>Core documentation</h2>
 
7
 
 
8
  <table class="contentstable" align="center" style="margin-left: 30px"><tr>
 
9
    <td width="50%">
 
10
        <p class="biglink"><a class="biglink" href="{{ pathto("user-guide/index") }}">User Guide</a><br/>
 
11
        <span class="linkdescr">how to use Bazaar effectively</span>
 
12
      </p>
 
13
      <p class="biglink"><a class="biglink" href="{{ pathto("tutorials/index") }}">Tutorials</a><br/>
 
14
      <span class="linkdescr">brief introductions</span>
 
15
      </p>
 
16
      <p class="biglink"><a class="biglink" href="{{ pathto("quick-reference/index") }}">Quick Reference</a><br/>
 
17
      <span class="linkdescr">for your wall</span>
 
18
      </p>
 
19
    </td><td width="50%">
 
20
    <p class="biglink"><a class="biglink" href="{{ pathto("release-notes/index") }}">Release Notes</a><br/>
 
21
      <span class="linkdescr">what's new</span>
 
22
      </p>
 
23
      <p class="biglink"><a class="biglink" href="{{ pathto("upgrade-guide/index") }}">Upgrade Guide</a><br/>
 
24
      <span class="linkdescr">moving to Bazaar 2.x</span>
 
25
      </p>
 
26
      <p class="biglink"><a class="biglink" href="{{ pathto("user-reference/index") }}">User Reference</a><br/>
 
27
      <span class="linkdescr">all the gory details</span>
 
28
      </p>
 
29
      <p class="biglink"><a class="biglink" href="{{ pathto("admin-guide/index") }}">System Admin Guide</a><br/>
 
30
      <span class="linkdescr">security, backups, etc.</span>
 
31
      </p>
 
32
    </td></tr>
 
33
  </table>
 
34
 
 
35
  <h2>Related links</h2>
 
36
 
 
37
  <table class="contentstable" align="center" style="margin-left: 30px"><tr>
 
38
    <td width="50%">
 
39
        <p class="biglink"><a class="biglink" href="https://answers.launchpad.net/bzr/+faqs">FAQ</a><br/>
 
40
      <span class="linkdescr">frequently asked questions</span>
 
41
      </p>
 
42
      <p class="biglink"><a class="biglink" href="http://bazaar-vcs.org/BzrGlossary/">Glossary</a><br/>
 
43
      <span class="linkdescr">help with terminology</span>
 
44
      </p>
 
45
      <p class="biglink"><a class="biglink" href="../developers/">Developer Docs</a><br/>
 
46
        <span class="linkdescr">improving and extending bzr</span>
 
47
      </p>
 
48
    </td>
 
49
    <td width="50%">
 
50
      <p class="biglink"><a class="biglink" href="http://doc.bazaar-vcs.org/migration/en/">Migration Docs</a><br/>
 
51
      <span class="linkdescr">for refugees of other tools</span>
 
52
      </p>
 
53
      <p class="biglink"><a class="biglink" href="http://doc.bazaar-vcs.org/plugins/en/">Plugins Guide</a><br/>
 
54
      <span class="linkdescr">help on popular plugins</span>
 
55
      </p>
 
56
    </td></tr>
 
57
  </table>
 
58
 
 
59
{% endblock %}