forked from p46318075/CodePattern
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
342 B
16 lines
342 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Word Frequencies</title>
|
|
</head>
|
|
<body>
|
|
<h1>Top Word Frequencies:</h1>
|
|
<ul>
|
|
{% for word, count in word_counts %}
|
|
<li>{{ word }}: {{ count }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<a href="{{ url_for('index') }}">Back to Upload</a>
|
|
</body>
|
|
</html> |