You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
846 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>TextRank summarizing</title>
<meta name="description" content="a call for 2 desks in studio 5 of the Meyboom artist-run spaces">
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" type="text/css" href="css/typography.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
{% for page in pages %}
<article>
<div class="text">
<h1>{{ page.title|safe }} ({{ page.lang|safe }})</h1>
<ol>
{% for s in page.sentences[:5] %}
<li><code>[{{ s.score|safe }}]</code> {{ s.text|safe }}</li>
{% endfor %}
</ol>
</div>
</article>
{% endfor %}
</body>
</html>