Flask application repository for Banner Repeater's DAAP (Digital Archive of Artists Publishing).
SPARQL queries by Lozana Rossenova, CSS and JS by Joana Chicau, python and Jinja by Julie Boschat-Thorez.
See https://daap.network
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.
78 lines
2.7 KiB
78 lines
2.7 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>D.A.A.P</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/css/style.css') }}">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
<div id="header-top">
|
|
<div id="animatedlogo">
|
|
<img src="{{ url_for('static', filename='/imgs/Logos/DAAP BR square logo -Animated Image (Small).gif') }}">
|
|
</div>
|
|
<div id="header-title">
|
|
<a href="{{ url_for('home') }}">DIGITAL ARCHIVE OF ARTISTS' PUBLISHING</a>
|
|
</div>
|
|
<div id="header-keyword-search">
|
|
<span>WEBSITE IN DEVELOPMENT</span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="navigation">
|
|
<div id="nav-about"><a href="{{ url_for('about') }}">About</a></div>
|
|
<div id="nav-browse-archive"><a href="{{ url_for('browsethearchive') }}">Browse the archive</a></div>
|
|
<div id="nav-browse-category">Browse by category</div>
|
|
<div id="nav-search"><a target="_blank" href="http://query.daap.bannerrepeater.org">Search tools</a></div>
|
|
<div id="nav-tutorials">Tutorials</div>
|
|
<div id="nav-upload">Upload</div>
|
|
<div id="nav-login"><a href="https://daap.bannerrepeater.org/w/index.php?title=Special:UserLogin&returnto=Main+Page">Log in</a></div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
{% block content %}
|
|
{% endblock content %}
|
|
|
|
<div id="footer">
|
|
|
|
<!-- <div id="footer-br"> -->
|
|
<div id="footer-title-br"><p>A project by:</p></div>
|
|
<div id="footer-img-br"><img src="{{ url_for('static', filename='/imgs/Logos/Banner-Repeater-logo.png') }}"></div>
|
|
<!-- </div> -->
|
|
<!-- <div id="footer-others"> -->
|
|
<div id="footer-title-others"><p>With support from:</p></div>
|
|
<div id="footer-img-others">
|
|
<div id="footer-img-wiki"><img src="{{ url_for('static', filename='/imgs/Logos/wikimedia_logo.png') }}"></div>
|
|
<div id="footer-img-lottery"><img src="{{ url_for('static', filename='/imgs/Logos/Lottery-white on black.png') }}"></div>
|
|
</div>
|
|
|
|
|
|
<div id="footer-title-socials"><p>SOCIAL</p></div>
|
|
<div id="footer-socials-links">
|
|
<p><a target="_blank" href="https://www.facebook.com/BannerRepeater">Facebook</a></p>
|
|
<p><a target="_blank" href="https://twitter.com/BANNERREPEATER">Twitter</a></p>
|
|
<p><a target="_blank" href="https://www.instagram.com/bannerrepeater/">Instagram</a></p>
|
|
<p><a target="_blank" href="mailto:daap.community@disroot.org">Email address</a></p>
|
|
</div>
|
|
|
|
|
|
<div id="footer-title-contact"><p>EXPRESSION OF INTEREST</p></div>
|
|
<div id="footer-contact"><a target="_blank" href="https://forms.gle/4EFpkQ9AKzZpdUmF6"><div class="bluebutton" id="contactform">FILL UP CONTACT FORM<span></span></div></a></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|