software-engineering.html 848 B

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{page.title}}{% endblock %}
  3. {% block content %}
  4. <div id="software-engineering">
  5. <div id="page-header">
  6. <h2>{{page.title}}</h2>
  7. </div>
  8. {% if page.toc %}{{page.toc|safe}}{% endif %}
  9. {{page.content|safe}}
  10. <script>
  11. function HACK_identifyData () {
  12. var el = document.getElementById('roles_by_project');
  13. while( el && el.nodeName.toLowerCase() != 'table') {
  14. el = el.nextSibling;
  15. }
  16. if (el) {
  17. el.setAttribute('id', 'roles_by_project_data');
  18. }
  19. }
  20. HACK_identifyData();
  21. </script>
  22. <div id="prev-next">
  23. <a href="/">&laquo; Home</a>
  24. {% if all page.prev page.next %}
  25. ||
  26. {% endif %}
  27. {% if page.next %}
  28. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  29. {% endif %}
  30. </div>
  31. </div>
  32. {% endblock %}