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.

146 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>&nbsp;WttN</title>
<meta charset="UTF-8">
<meta name="description" content="Welcome to the Network">
<meta name="date" content="2019">
<meta name="keywords" content="HTML, CSSPiet Zwart Institute, Network, Mastodon">
<meta name="author" content="Pedro Sá Couto">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/icon.png">
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<dl>
<dt>1 — WHAT IS A NETWORK?</dt>
<dt>2 — AUTONOMY AND ITS CONTINGENCIES</dt>
<dt>3 — SOCIAL NETWORKS</dt>
<dt>4 — NETWORK(ED) PUBLISHING</dt>
<dt>5 — MAPPING NETWORKS</dt>
</dl>
</header>
<main>
<div class="open">
<ul>
<li><button onclick="text0()">Scrape instance peers</button></li>
</ul>
</div><!--
--><div class="popup" id="text00">
<p class="footnotes"><a href=https://git.xpub.nl/pedrosaclout/scrape_peers_mastodon_ai>https://git.xpub.nl/pedrosaclout/scrape_peers_mastodon_ai</a></p>
</div><!--
--><div class="open">
<ul>
<li><button onclick="text1()">Scrape about more instance peers</button></li>
</ul>
</div><!--
--><div class="popup" id="text01">
<p class="footnotes"><a href=https://git.xpub.nl/pedrosaclout/scrape_about_more_peers_mastodon>https://git.xpub.nl/pedrosaclout/scrape_about_more_peers_mastodon</a></p>
</div><!--
--><div class="open">
<ul>
<li><button onclick="text2()">Gather Mastodon Toot Answers</button></li>
</ul>
</div><!--
--><div class="popup" id="text02">
<p class="footnotes"><a href=https://git.xpub.nl/pedrosaclout/answers_mastodon_api>https://git.xpub.nl/pedrosaclout/answers_mastodon_api</a></p>
</div><!--
--><div class="open">
<ul>
<li><button onclick="text3()">Gather Mastodon DMS</button></li>
</ul>
</div><!--
--><div class="popup" id="text03">
<p class="footnotes"><a href=https://git.xpub.nl/pedrosaclout/dms_mastodon_api>https://git.xpub.nl/pedrosaclout/dms_mastodon_api</a></p>
</div><!--
--><div class="open">
<ul>
<li><button onclick="text4()">Scrape instance.social</button></li>
</ul>
</div><!--
--><div class="popup" id="text04">
<p class="footnotes"><a href=https://git.xpub.nl/pedrosaclout/instance_scrape>https://git.xpub.nl/pedrosaclout/instance_scrape</a></p>
</div><!--
--><div class="home">
<ul>
<li><a href="index.html">Home</a></li>
</ul>
</main>
<footer>
<h1>Project Developed on<br>23rd March 2019<br>Piet Zwart Institute (NL)<br>Special issue 08</h1>
</footer>
<script type="text/javascript">
function text0() {
var x = document.getElementById("text00");
if (x.style.display === "inline-block") {
x.style.display = "none";
} else {
x.style.display = "inline-block";
}
}
function text1() {
var x = document.getElementById("text01");
if (x.style.display === "inline-block") {
x.style.display = "none";
} else {
x.style.display = "inline-block";
}
}
function text2() {
var x = document.getElementById("text02");
if (x.style.display === "inline-block") {
x.style.display = "none";
} else {
x.style.display = "inline-block";
}
}
function text3() {
var x = document.getElementById("text03");
if (x.style.display === "inline-block") {
x.style.display = "none";
} else {
x.style.display = "inline-block";
}
}
function text4() {
var x = document.getElementById("text04");
if (x.style.display === "inline-block") {
x.style.display = "none";
} else {
x.style.display = "inline-block";
}
}
</script>
</body>
</html>