You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 842B

12345678910111213141516171819202122232425262728293031323334
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. Index
  4. {% endblock %}
  5. {% block content %}
  6. <nav class="navbar navbar-default">
  7. <div class="container-fluid">
  8. <div class="navbar-header">
  9. <a class="navbar-brand" href="https://www.th-nuernberg.de/fakultaeten/efi/">Efi</a>
  10. <a class="navbar-brand" href="https://www.google.de">Google</a>
  11. <a class="navbar-brand" href="/posts">Home</a>
  12. </div>
  13. <ul class="nav navbar-nav">
  14. <li class="active"><a href="#">Home</a></li>
  15. <li><a href="/posts">Page 1</a></li>
  16. <li><a href="">Page 2</a></li>
  17. <li><a href="h">Page 3</a></li>
  18. </ul>
  19. </div>
  20. </nav>
  21. <div class="container">
  22. <div class="jumbotron">
  23. <h1>Jumbotron Test</h1>
  24. <p>My Jumbotron test</p>
  25. </div>
  26. <p>This is some text.</p>
  27. <p>This is another text.</p>
  28. </div>
  29. {% endblock %}