Curso-lenguaje-python/30-days-of-python/26_Desarrollo_web_en_Python/web/templates/home.html
Manuel Vergara 08d20fee61 Add exercises 26
Signed-off-by: Manuel Vergara <manuel@vergaracarmona.es>
2023-10-09 00:00:03 +02:00

24 lines
656 B
HTML

{% extends 'layout.html' %} {% block content %}
<div class="container">
<h1>Welcome to {{name}}</h1>
<div>
<img src="https://c.tenor.com/Zdpc10JrZrIAAAAC/tenor.gif"
alt="python" />
</div>
<p>
This application clean texts and analyse the number of word, characters
and
most frequent words in the text. Check it out by click text analyzer at
the
menu. You need the following technologies to build this web application:
</p>
<ul class="tech-lists">
{% for tech in techs %}
<li class="tech">{{tech}}</li>
{% endfor %}
</ul>
</div>
{% endblock %}