Project for the Hybrid Publishing thesis award of 2018.
By Julie Boschat Thorez and Cristina Cochior.
https://www.wdka.nl/work/sic-scripture
http://51.255.169.99:8080/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Library</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
|
|
<!--TEST-->
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div class="nav-top">
|
|
<ul>
|
|
<li><a class="nav-button" style="text-align: left;">BOUGHT</a></li>
|
|
<li><a class="nav-button" style="text-align: center;">STOLEN</a>
|
|
<li><a class="nav-button" style="text-align: right;">REPURPOSED</a>
|
|
</ul>
|
|
</div>
|
|
<div class="main">
|
|
<div class="main-column-left">
|
|
|
|
<div id="listofpeople">
|
|
{% for librarian in librarians %}
|
|
<a href="#" onclick="return test();" class="librarian-names">{{ librarian }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
<br>
|
|
|
|
<div class="file-names-container">
|
|
{% for file in filetoname_dict %}
|
|
<a href="" class="file-names">{{file["debris"]}}</a><br>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main-column-right">
|
|
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</div>
|
|
<div class="nav-bottom">
|
|
<ul>
|
|
<li><a class="nav-button" style="text-align: left;">COPIED</a></li>
|
|
<li><a class="nav-button" style="text-align: center;">FOUND</a></li>
|
|
<li><a class="nav-button" style="text-align: right;">GIFT</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|