etiquette/templates/bookmarks.html

26 lines
497 B
HTML
Raw Normal View History

2016-11-29 04:18:44 +00:00
<!DOCTYPE html5>
<html>
<head>
{% import "header.html" as header %}
<title>Bookmarks</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/common.css">
<script src="/static/common.js"></script>
<style>
</style>
</head>
<body>
{{header.make_header(session=session)}}
2016-11-29 04:18:44 +00:00
<div id="content_body">
<a href="/search?has_tags=no&orderby=random-desc&mimetype=image">Needs tagging</a>
</div>
</body>
<script type="text/javascript">
</script>
</html>