splitscreen is in fact a simplification to work with

This commit is contained in:
Michael Murtaugh
2019-07-08 20:28:29 +02:00
parent 2f23dd9b46
commit ad3e494d47
3 changed files with 353 additions and 0 deletions

28
splitscreen.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<title>école de recherche graphique</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="splitscreen.css">
</head>
<body>
<div id="page">
<svg id="svg"></svg>
<div id="cats" class="expanded">
<div class="contents">
<div class="head">Liste des catégories</div>
<div class="body"></div>
<hr>
<div class="history"><input id="history" type="checkbox"><label for="history">Histoire</div>
</div>
</div>
</div>
<div id="wikiframediv">
<iframe id="wikiframe" src="/mw"></iframe>
</div>
</body>
<script type="text/javascript" src="dist/app.js"></script>
<script src="dist/index.js"></script>
</html>