Dieses Repository enthält Python-Dateien die im Rahmen des Wahlpflichtmoduls "Informationssysteme in der Medizintechnik" (Dozent: Prof. Dr. Oliver Hofmann) erstellt wurden und verwaltet deren Versionskontrolle.
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 404B

12345678910111213141516
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. My_Index
  4. {% endblock %}
  5. {% block content %}
  6. <div class="jumbotron">
  7. <h1 class="display-4">Text als Jumbotron :-)</h1>
  8. <p class="lead">Hier kommt noch zusätzlicher text, der den/das Jombotron näher erklärt</p>
  9. </div>
  10. <img src="https://www.th-nuernberg.de/fileadmin/global/Bilderpool_KOM/Standorte/Standortbild/171958_8_3_W.jpg">
  11. {% endblock %}