{% extends 'layouts/app.twig' %}
{% block contents %}
<div class="card">
<div class="card-header">Utility Web</div>
<div class="card-body">
<div class="card-text p-4 my-2 blockquote border-primary z-depth-1 font-italic" style="font-size: 13px">
Hello there, welcome <b>UtiWeb(Utility Web).</b><br/>
This website is built for educational purpose only.<br/>
You will be held responsibilty to use this website for abuse or other illegal actions.<br/>
Happy education!!!
</div>
<div class="list-group z-depth-1">
<a href="/movies" class="list-group-item list-group-item-action d-flex justify-content-between">
<span>
<i class="fa fa-film"></i>
Movies
</span>
<i class="fa fa-chevron-right"></i>
</a>
<a href="/tvshows" class="list-group-item list-group-item-action d-flex justify-content-between">
<span>
<i class="fa fa-tv"></i>
TV Shows
</span>
<i class="fa fa-chevron-right"></i>
</a>
<a href="/others" class="list-group-item list-group-item-action d-flex justify-content-between">
<span>
<i class="fa fa-archive"></i>
Others
</span>
<i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</div>
{% endblock contents %}
|