30 lines
695 B
HTML
30 lines
695 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Noise test</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
|
|
</head>
|
|
<body>
|
|
{% for s in specimens %}
|
|
<h2>{{ s.title }}</h2>
|
|
{% for np in s.params %}
|
|
<figure>
|
|
<p>
|
|
<a href="{{ np.big_url()|safe }}">
|
|
<img width="{{ np.width }}" height="{{ np.height }}" src="{{ np.url()|safe }}"/>
|
|
</a>
|
|
<figcaption>
|
|
<table>
|
|
{% for p in np.noise.parameters() %}
|
|
<tr><th>{{ p.0 }}</th><td>{{ p.1 }}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
</figcaption>
|
|
</figure>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
<p>Rendered at: {{ render_time }}</p>
|
|
</body>
|
|
</html>
|