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.

116 lines
3.6 KiB
HTML

6 years ago
<!DOCTYPE html>
6 years ago
<html>
6 years ago
<head>
6 years ago
<meta charset="utf-8">
6 years ago
<title>SPECIAL ISSUE 6: Interfacing the Law</title>
6 years ago
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style>
@font-face {
font-family: 'special-issue-6';
src: url('fonts/ArchivoNarrow-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/ArchivoNarrow-Regular.woff') format('woff'), url('fonts/ArchivoNarrow-Regular.ttf') format('truetype');
}
6 years ago
body{
margin:0;
padding: 0;
6 years ago
6 years ago
}
#container{
width: 100%;
margin:0;
}
#description{
width: 30%;
margin:0;
float: left;
height: 100vh;
overflow-y: scroll;
overflow-x: hidden;
letter-spacing: 1px;
6 years ago
}
#description p{
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
font-family: "special-issue-6";
font-size: 16px;
6 years ago
6 years ago
padding-bottom: 0;
}
#description a{
background-color: yellow;
text-decoration: none;
color: black;
padding: 5px;
}
6 years ago
#pdfs{
width: 70%;
margin:0;
6 years ago
padding: 0;
6 years ago
float: left;
height: 100vh;
}
#title{
cursor: pointer;
font-size: 28px!important;
6 years ago
}
</style>
</head>
<body>
<div id="container">
<div id="pdfs">
6 years ago
<embed src="https://pzwiki.wdka.nl/mw-mediadesign/images/9/9d/XPPL-SPECIALISSUE4.pdf" width="100%" height="25%" alt="pdf" pluginspage="https://www.adobe.com/products/acrobat/readstep2.html">
6 years ago
6 years ago
<embed id="main_pdf" src="https://pzwiki.wdka.nl/mw-mediadesign/images/c/c5/XPPL-POSTER2.pdf" width="100%" height="50%" alt="pdf" pluginspage="https://www.adobe.com/products/acrobat/readstep2.html">
6 years ago
6 years ago
<embed src="https://pzwiki.wdka.nl/mw-mediadesign/images/b/b2/XPPL-SPECIALISSUE3.pdf" width="100%" height="25%" alt="pdf" pluginspage="https://www.adobe.com/products/acrobat/readstep2.html">
6 years ago
</div>
<div id="description">
<p>SPECIAL ISSUE 6: Interfacing the Law</p>
6 years ago
<p id="title">XPERIMENTAL POTENTIAL PIRATE LIBRARY</p>
<p>
From April to June 2018, the practitioners of the Media Design Experimental Publishing Master course (XPUB) of the Piet Zwart Institute worked on XPPL: a project under the special issue INTERFACING THE LAW: an ongoing research project between XPUB and CONSTANT about extra-legal libraries, software and legal interfaces, intellectual property, and network catalogues. Every year we explore some facets of these issues, and XPPL is the result of this year's collaboration.
</p>
6 years ago
<p> The XPPL is released under the AGPL license. It is a continuous work in progress. Through workshops, guides and discussions the library is open to future generations of students, peers, and researchers to augment, intervene and learn.
</p>
6 years ago
<p><a class="link" href = "http://lib.xpub.nl">Go to library</a></p>
6 years ago
<p>Special Thanks to Femke Snelting, Bodó Balázs, Dušan Barok, André Castro, Séverine Dusollier, Aymeric Mansoux, Marcell Mars, Ania Molenda, Michael Murtaugh, Dubravka Sekulic, Steve Rushton</p>
<p> This event is facilitated by XPUB practitioners: Natasha Berting, Angeliki Diakrousi, Joca van der Horst, Alexander Roidl, Alice Strete and Zalán Szakács, with a guest contribution by Dubravka Sekulic.
</p>
6 years ago
<br><br>
</div>
</div>
<script>
$( "#title" ).click(function() {
generateTitle(this);
});
$( document ).ready(function() {
generateTitle("#title");
});
function generateTitle(elem){
var x = ["XPERIMENTAL"]
var p1 = ["POTENTIAL", "PUBLIC", "POST", "PI", "PLATFORM FOR", "PRETENTIOUS"]
var p2 = ["PIRATE", "PERFORMATIVE", "PUBLIC", "PUBLISHING", "POTENTIAL"]
var l = ["LIBRARY", "LIAISON", "LAB", "LEGALITY", "LABOUR"]
$(elem).text(x[Math.floor(Math.random()*x.length)]+" "+p1[Math.floor(Math.random()*p1.length)]+" "+p2[Math.floor(Math.random()*p2.length)]+" "+l[Math.floor(Math.random()*l.length)]);
}
</script>
</body>
6 years ago
</html>