Flask-Workshop/templates/colorful-primes.html

14 lines
320 B
HTML

<html>
<head>
<title>{{ title }}</title>
</head>
<body>
{% for number in numbers %}
{% if isprime(number) %}
<b style="color:blue">{{ number }}</b>
{% else %}
{{ number }}
{% endif %}
{% endfor %}
</body>
</html>