58 lines
2.9 KiB
HTML
58 lines
2.9 KiB
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block page_content %}
|
||
|
<h1>Index</h1>
|
||
|
|
||
|
<div id="myCarousel" class="carousel slide" data-ride="carousel">
|
||
|
<!-- Indicators -->
|
||
|
<ol class="carousel-indicators">
|
||
|
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
|
||
|
<li data-target="#myCarousel" data-slide-to="1"></li>
|
||
|
<li data-target="#myCarousel" data-slide-to="2"></li>
|
||
|
<li data-target="#myCarousel" data-slide-to="3"></li>
|
||
|
</ol>
|
||
|
|
||
|
<!-- Wrapper for slides -->
|
||
|
<div class="carousel-inner" role="listbox">
|
||
|
<div class="item active">
|
||
|
<img src="static/images/1.jpg" alt="Chania">
|
||
|
</div>
|
||
|
|
||
|
<div class="item">
|
||
|
<img src="static/images/2.jpg" alt="Chania">
|
||
|
</div>
|
||
|
|
||
|
<div class="item">
|
||
|
<img src="static/images/3.jpg" alt="Flower">
|
||
|
</div>
|
||
|
|
||
|
<div class="item">
|
||
|
<img src="static/images/4.jpg" alt="Flower">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- Left and right controls -->
|
||
|
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
|
||
|
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
|
||
|
<span class="sr-only">Previous</span>
|
||
|
</a>
|
||
|
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
|
||
|
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
||
|
<span class="sr-only">Next</span>
|
||
|
</a>
|
||
|
</div>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-4">
|
||
|
<p>Yr umami selfies Carles DIY, pop-up Tonx meggings stumptown freegan street art Vice ethnic. Pickled gastropub lo-fi polaroid, ennui selvage meh Tumblr organic iPhone kale chips narwhal Echo Park. Tonx literally distillery Pitchfork McSweeney's semiotics. Stumptown YOLO fanny pack bespoke, kitsch Carles gastropub vegan. Biodiesel ennui church-key McSweeney's, selvage hoodie Brooklyn 90's lomo. Quinoa photo booth cliche semiotics. Roof party Etsy ethnic, fashion axe mlkshk 8-bit paleo.</p>
|
||
|
</div>
|
||
|
<div class="col-md-4">
|
||
|
<p>Yr umami selfies Carles DIY, pop-up Tonx meggings stumptown freegan street art Vice ethnic. Pickled gastropub lo-fi polaroid, ennui selvage meh Tumblr organic iPhone kale chips narwhal Echo Park. Tonx literally distillery Pitchfork McSweeney's semiotics. Stumptown YOLO fanny pack bespoke, kitsch Carles gastropub vegan. Biodiesel ennui church-key McSweeney's, selvage hoodie Brooklyn 90's lomo. Quinoa photo booth cliche semiotics. Roof party Etsy ethnic, fashion axe mlkshk 8-bit paleo.</p>
|
||
|
</div>
|
||
|
<div class="col-md-4">
|
||
|
<p>Yr umami selfies Carles DIY, pop-up Tonx meggings stumptown freegan street art Vice ethnic. Pickled gastropub lo-fi polaroid, ennui selvage meh Tumblr organic iPhone kale chips narwhal Echo Park. Tonx literally distillery Pitchfork McSweeney's semiotics. Stumptown YOLO fanny pack bespoke, kitsch Carles gastropub vegan. Biodiesel ennui church-key McSweeney's, selvage hoodie Brooklyn 90's lomo. Quinoa photo booth cliche semiotics. Roof party Etsy ethnic, fashion axe mlkshk 8-bit paleo.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|