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.
97 lines
1.8 KiB
97 lines
1.8 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
|
|
</title>
|
|
<style>
|
|
|
|
img {
|
|
width:200%;
|
|
}
|
|
|
|
.position-trbl-0 {
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
position: fixed;
|
|
}
|
|
|
|
.col {
|
|
border-left: 1px solid;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.col-inner {
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 0 30px;
|
|
overflow-y: scroll;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.overflow-auto {
|
|
overflow: auto;
|
|
}
|
|
|
|
.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="w-100 position-fixed position-trbl-0">
|
|
<div class="container-fluid position-relative position-trbl-0 overflow-hidden h-100">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="col-inner">
|
|
<p class="p-4" id="squawk"></p>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<div class="col-inner">
|
|
<p class="p-4" id="notouch"></p>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<div class="col-inner">
|
|
<p class="p-4" id="urla"></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
|
|
function httpGet(theUrl){
|
|
var xmlHttp = new XMLHttpRequest();
|
|
xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
|
|
xmlHttp.send( null );
|
|
return xmlHttp.responseText;
|
|
}
|
|
|
|
var squawk = httpGet('https://pad.vvvvvvaria.org/WordMord.%CE%B7.%CE%B6%CE%BF%CF%85%CE%BC%CE%B9%CE%AC/export/html');
|
|
var urla= httpGet ('https://pad.vvvvvvaria.org/WordMord.urla/export/html')
|
|
var notouch = httpGet('https://pad.xpub.nl/p/WordMord.images/export/txt');
|
|
|
|
document.getElementById("squawk").innerHTML = squawk;
|
|
document.getElementById("notouch").innerHTML = notouch;
|
|
document.getElementById("urla").innerHTML = urla;
|
|
//document.styleSheets[1].disabled = true;
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|