indexcontent.html 2.9 KB

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