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.

40 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="{{url_for('static', filename='css/global.css')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='css/home.css')}}" />
<script src="{{url_for('static', filename='js/cookies.js')}}"></script>
<script src="{{url_for('static', filename='js/color.js')}}" defer></script>
<title>Post-it</title>
</head>
<body>
<h1>🚩 85 000 post-it</h1>
<h2><a class="generate all" href="{{url_for('generate.blocks')}}">Generate all</a> <a href="{{url_for('generate.blocks', print=true)}}">(print)</a></h2>
<button id="color"></button>
<h3>Contribution</h3>
<ol>
{%for page in pages %}
<li>
<a class="generate" href="{{url_for('generate.block', slug=page)}}">{{page}}</a> <a class="print" href="{{url_for('generate.block', slug=page, print=true)}}">🖨️</a>
</li>
{%endfor%}
</ol>
<h3>Extra</h3>
<ul>
<li>
<a href="{{url_for('generate.block', slug='crosswords_launch')}}" class="generate">crossword_launch</a> <a class="print" href="{{url_for('generate.block', slug='crosswords_launch', print=true)}}">🖨️</a>
</li>
</ul>
</body>
</html>