Django/templates/posts/index.html

24 lines
586 B
HTML
Raw Normal View History

2019-11-05 15:08:44 +01:00
{% extends 'base.html' %}
{% block title %}
Index
{% endblock %}
{% block content %}
<div class="jumbotron">
<h1>Bootstrap Tutorials</h1>
<p>
Bootstrap is a free, open-source and is the most popular HTML, CSS,
and JavaScript framework developed by twitter for creating
responsive web applications.
</p>
<p>
<a class="btn btn-lg btn-primary" href="http://www.google.com">
Frag Amad
</a>
</p>
</div>
<h1> Index der Polls-Applikation</h1>
{% endblock %}