24 lines
586 B
HTML
24 lines
586 B
HTML
|
{% 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 %}
|