17 lines
360 B
HTML
17 lines
360 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Ca42</title>
|
|
</head>
|
|
<body>
|
|
<h1>Ca42</h1>
|
|
{% for date in dates %}
|
|
<h1>{{date}}</h1>
|
|
{% endfor %}
|
|
<form action="/api/update" method="post">
|
|
<button name="foo" value="upvote">Upvote</button>
|
|
</form>
|
|
</body>
|
|
</html>
|