Schule als Staat Projekt Web, Dokumente, etc.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

43 lignes
2.0KB

  1. {% load static %}
  2. <link rel="stylesheet" type="text/css" href="{% static "public/css/header.css" %}">
  3. <div id=header>
  4. <form action="{% url "datenbank:index" %}" method="post">
  5. {% csrf_token %}
  6. <table class="table">
  7. <tr>
  8. <td id ="logotablerow", width="20%">
  9. <img id="logo" src="{% static "public/images/apb_icon.png" %}" alt="logo">
  10. </td>
  11. <td class="link-container">
  12. <a class="top-links", href="https://www.tagesschau.de">tagesschau.de</a>
  13. </td>
  14. <td class="link-container">
  15. <a class="top-links", href="http://www.goethelb.de">goethelb.de</a>
  16. </td>
  17. <td class="link-container">
  18. <a class="top-links", href="http://www.zeit.de">zeit.de</a>
  19. </td>
  20. <td class="link-container">
  21. <a class="top-links", href="https://www.bpb.de">bpb.de</a>
  22. </td>
  23. <td vertical-align="middle", width="25%" class="allcenter">
  24. <input type="text" id="search" name="query" maxlength="30" placeholder="Datenbank durchsuchen" value="{{ query }}">
  25. </td>
  26. <td width="5%" class="allcenter">
  27. <input id="submit_search" type="submit" value="Suchen">
  28. </td>
  29. </tr>
  30. </table>
  31. </form>
  32. <div id="navigation">
  33. <ul class="navbar">
  34. <li class ="navbar"><a {% if appname == "startpage" %}class="active"{% endif %} href="/">Information</a></li>
  35. <li class ="navbar"><a {% if appname == "news" %}class="active"{% endif %} href="{% url "news:index" %}">Regierung</a></li>
  36. <li class="navbar"><a {% if appname == "datenbank" %}class="active"{% endif %} href="{% url "datenbank:index" %}">Datenbank</a></li>
  37. <li class="navbar"><a {% if appname == "meingoethopia" %}class="active"{% endif %} href="{% url "meingoethopia:index" %}">Mein Goethopia</a></li>
  38. </ul>
  39. </div>
  40. </div>