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