~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to docs/en/theme/lm-basic (copy)/defindex.html

  • Committer: Cecilio Salmeron
  • Date: 2012-11-25 14:37:10 UTC
  • Revision ID: s.cecilios@gmail.com-20121125143710-ohccpjc3pk7ut3u1
Added script po-statistics.pl to maintain website translations page. * Restored exercise modes (learning, practise, exam and quiz). * Added DlgExerciseMode. * Restored right/wrong sounds when answering an exercise. * Fixed bug #1074909. * Fixed bug #1082637.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{#
 
2
    basic/defindex.html
 
3
    ~~~~~~~~~~~~~~~~~~~
 
4
 
 
5
    Default template for the "index" page.
 
6
 
 
7
    :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
 
8
    :license: BSD, see LICENSE for details.
 
9
#}
 
10
{% extends "layout.html" %}
 
11
{% set title = _('Overview') %}
 
12
{% block body %}
 
13
  <h1>{{ docstitle|e }}</h1>
 
14
  <p>
 
15
    Welcome! This is
 
16
    {% block description %}the documentation for {{ project|e }}
 
17
    {{ release|e }}{% if last_updated %}, last updated {{ last_updated|e }}{% endif %}{% endblock %}.
 
18
  </p>
 
19
  {% block tables %}
 
20
  <p><strong>{{ _('Indices and tables:') }}</strong></p>
 
21
  <table class="contentstable" align="center"><tr>
 
22
    <td width="50%">
 
23
      <p class="biglink"><a class="biglink" href="{{ pathto("contents") }}">{{ _('Complete Table of Contents') }}</a><br>
 
24
         <span class="linkdescr">{{ _('lists all sections and subsections') }}</span></p>
 
25
      <p class="biglink"><a class="biglink" href="{{ pathto("search") }}">{{ _('Search Page') }}</a><br>
 
26
         <span class="linkdescr">{{ _('search this documentation') }}</span></p>
 
27
    </td><td width="50%">
 
28
      <p class="biglink"><a class="biglink" href="{{ pathto("modindex") }}">{{ _('Global Module Index') }}</a><br>
 
29
         <span class="linkdescr">{{ _('quick access to all modules') }}</span></p>
 
30
      <p class="biglink"><a class="biglink" href="{{ pathto("genindex") }}">{{ _('General Index') }}</a><br>
 
31
         <span class="linkdescr">{{ _('all functions, classes, terms') }}</span></p>
 
32
    </td></tr>
 
33
  </table>
 
34
  {% endblock %}
 
35
{% endblock %}