Auslagerung des HTML-Inhalts als eigene HMTL-Datei -> funktioniert! Vererbte HMTL-Datei "index.html" von "base.html" -> funktioniert!
9 lines
138 B
HTML
9 lines
138 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
My_Index
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
Content der geerbten HTML-Seite
|
|
{% endblock %} |