16 lines
404 B
HTML
16 lines
404 B
HTML
{% 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 %} |