indexcontent.html (2972B)
1 {% extends "layout.html" %} 2 {%- block htmltitle -%} 3 <title>{{ shorttitle }}</title> 4 {%- endblock -%} 5 {% block body %} 6 <h1>{{ docstitle|e }}</h1> 7 <p><strong>{% trans %}Parts of the documentation:{% endtrans %}</strong></p> 8 9 <table class="contentstable" align="center"><tr> 10 <td width="50%" style="vertical-align:top;"> 11 <p class="biglink"><a class="biglink" href="{{ pathto("tutorial") }}">Tutorial</a><br/> 12 <span class="linkdescr">A 10-minutes introduction to Waf</span></p> 13 14 <p class="biglink"><a class="biglink" href="{{ pathto("tools") }}">Waf tools</a><br/> 15 <span class="linkdescr">Support for programming languages</span></p> 16 17 <p class="biglink"><a class="biglink" href="{{ pathto("confmap") }}">Configuration methods</a><br/> 18 <span class="linkdescr">List of methods bound to the configuration context</span></p> 19 20 </td> 21 <td width="50%" style='vertical-align:top;'> 22 <p class="biglink"><a class="biglink" href="{{ pathto("coremodules") }}">Core modules</a><br/> 23 <span class="linkdescr">Main components of the Waf framework</span></p> 24 25 <p class="biglink"><a class="biglink" href="{{ pathto("featuremap") }}">Feature reference</a><br/> 26 <span class="linkdescr">Associations between feature names and task generator methods</span></p> 27 28 </td></tr> 29 </table> 30 31 <p><strong>Indices and tables:</strong></p> 32 <table class="contentstable" align="center"><tr> 33 <td width="50%"> 34 <p class="biglink"><a class="biglink" href="{{ pathto("py-modindex") }}">Global Module Index</a><br/> 35 <span class="linkdescr">quick access to all modules</span></p> 36 <p class="biglink"><a class="biglink" href="{{ pathto("genindex") }}">General Index</a><br/> 37 <span class="linkdescr">all functions, classes, terms</span></p> 38 </td><td width="50%" style="vertical-align:top;"> 39 <!-- <p class="biglink"><a class="biglink" href="{{ pathto("glossary") }}">Glossary</a><br/> 40 <span class="linkdescr">the most important terms explained</span></p> --> 41 <p class="biglink"><a class="biglink" href="{{ pathto("search") }}">Search page</a><br/> 42 <span class="linkdescr">search this documentation</span></p> 43 </td></tr> 44 </table> 45 46 <p><strong>Meta information:</strong></p> 47 <table class="contentstable" align="center"><tr> 48 <td width="50%"> 49 <p class="biglink"><a class="biglink" href="{{ pathto("copyright") }}">Copyright</a><br/> 50 <span class="linkdescr">Copyright notice</span></p> 51 52 <p class="biglink"><a class="biglink" href="https://gitlab.com/ita1024/waf/issues">Reporting bugs</a><br/> 53 <span class="linkdescr">Where to report bugs or request new features</span></p> 54 55 </td> 56 <td width="50%" style="vertical-align:top;"> 57 <p class="biglink"><a class="biglink" href="{{ pathto("about") }}">About</a><br/> 58 <span class="linkdescr">Documenting Waf</span></p> 59 60 </td></tr> 61 </table> 62 63 {% endblock %}