mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-12 21:01:48 +08:00
17 lines
511 B
HTML
17 lines
511 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Welcome to {{name}}</h1>
|
|
<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 %} |