debian-base.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. {% block head %}
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <title>{% block title %}Debian template layout{% endblock %}</title>
  7. {% block head_meta %}
  8. <link rev="made" href="mailto:webmaster@debian.org">
  9. <link rel="shortcut icon" href="favicon.ico">
  10. {% endblock %}
  11. {% block head_resources %}
  12. <link type="text/css" rel="stylesheet" media="all" href="{{ STATIC_URL }}css/debian.css">
  13. {% endblock %}
  14. {% endblock %}
  15. </head>
  16. <body>
  17. <p class="hidecss">
  18. <!--
  19. Skip navigation for text only browsers
  20. -->
  21. <a href="#content">Skip Navigation</a></p>
  22. <div id="header">
  23. <div id="upperheader">
  24. <div id="logo">
  25. <!--
  26. Do not change the link or logo
  27. -->
  28. <a href="http://www.debian.org/" title="Debian Home"><img src= "{{ STATIC_URL }}css/Pics/openlogo-50.png"
  29. alt="Debian" width="50" height= "61"></a>
  30. </div><!-- end logo -->
  31. <p class="section">
  32. <!--
  33. The section flag should be the site name highlighting the potential
  34. change of top nav links
  35. -->
  36. {% block section %}template{% endblock %}</p>
  37. <div id="searchbox">
  38. {% block searchbox %}
  39. <!--
  40. If your site has search functionality replace below with the correct
  41. form. For complex search with multiple choices consider using the body
  42. of the page or providing a simple initial search with the ability to
  43. refine on the results page.
  44. -->
  45. <form name="p" method="get" action="" id="">
  46. <p><input name="P" value="" size="27"> <input type=
  47. "submit" value="Search"></p>
  48. </form>
  49. {% endblock %}
  50. </div><!-- end searchbox -->
  51. </div><!-- end upperheader -->
  52. <div id="navbar">
  53. <!--
  54. The navbar links below can be changed to site specific links.
  55. -->
  56. <ul>
  57. {% block navbar %}
  58. <li><a href="http://www.debian.org/intro/about">About Debian</a></li>
  59. <li><a href="http://www.debian.org/distrib/">Getting Debian</a></li>
  60. <li><a href="http://www.debian.org/support">Support</a></li>
  61. <li><a href="http://www.debian.org/devel/">Developers'&nbsp;Corner</a></li>
  62. {% endblock %}
  63. </ul>
  64. </div><!-- end navbar -->
  65. <p id="breadcrumbs">
  66. <!--
  67. The breadcrumbs should always start with a slash followed by of the
  68. sub-domain name. Try to make your back end produce correct breadcrumbs
  69. Always leave one space between the slash and the link.
  70. -->
  71. {% block breadcrumbs %} template {% endblock %} </p>
  72. </div><!-- end header -->
  73. <div id="content">
  74. <span class="relatedpages">
  75. {% block relatedpages %}
  76. <!--
  77. A short list of related or "sibling" pages. Keep this list short, relevant and consistent
  78. -->
  79. <a href="./header.html">Header</a> <a href="./footer.html">Footer</a>
  80. <a href="http://wiki.debian.org/DebianWebdesign" title="Read more about the
  81. design and how to implement a new site">Debian web-design</a>
  82. <a href="http://wiki.debian.org/KallesDesign" title="Read about the ongoing
  83. redesign work">Redesign process</a>
  84. {% endblock %}
  85. </span><!-- end relatedpages -->
  86. {% if messages %}
  87. {% for message in messages %}
  88. <div class="{% if message.tags %}{{ message.tags }}{% else %}important{% endif %}"><p>{{ message }}</p></div>
  89. {% endfor %}
  90. {% endif %}
  91. {% block content %}
  92. <h1>
  93. <!--
  94. Start the content with a short descriptive h1 heading
  95. -->
  96. Debian Website Template</h1>
  97. {% endblock %}
  98. </div>
  99. <div id="footer">
  100. {% block footer %}
  101. {% endblock %}
  102. </div>
  103. </body>
  104. </html>