26 lines
531 B
HTML
26 lines
531 B
HTML
<!doctype html>
|
|
<html>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<!-- Disable zooming: -->
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, user-scalable=no"
|
|
/>
|
|
|
|
<head>
|
|
<title>Screenshot compare</title>
|
|
<link rel="stylesheet" href="index.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<ul>
|
|
{% for entry in examples %}
|
|
<li>
|
|
<a href="examples/{{ entry.name }}/index.html">{{ entry.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|