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.
29 lines
637 B
HTML
29 lines
637 B
HTML
3 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title> Biyi Wen Works Index {{ title }}</title>
|
||
|
<link rel="stylesheet" type="text/css" href="static/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div class ="heading">
|
||
|
<h1 class = "title">Biyi Wen Works Index</h1>
|
||
|
</div>
|
||
|
<div class="gallery">
|
||
|
{% for item in worklist %}
|
||
|
|
||
|
"{{item.type}}"
|
||
|
{{item.type}}
|
||
|
"{{item.title}}"
|
||
|
{{item.title}}
|
||
|
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
<div class ="footnote"> Index page is generated with Jinja with an idiosyncratic CMS.</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|