diff options
Diffstat (limited to 'pictures.html')
-rw-r--r-- | pictures.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pictures.html b/pictures.html new file mode 100644 index 0000000..28f1084 --- /dev/null +++ b/pictures.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.8.0"> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"> + <title>pdp8</title> + <link rel="stylesheet" type="text/css" href="/style.css"> + <link rel="icon" type="image/png" href="/pdp8.png"> +</head> +<body> + <nav> + <a id='logo' href='/about.html'><img src='/pdp8.png' alt='pdp8'></a><a class='item' href='/music.html'>music</a><a class='item current' href='/pictures.html'>pictures</a><a class='item' href='/videos.html'>videos</a><a class='item' href='/code.html'>code</a><a class='item' href='/contact.html'>contact</a><a id='menu' href='#' onclick='show_vertical_menu()'>≡</a> + </nav> + <div class='post'> + <script src="/distances.js"></script> + <script src="/slideshow.js"></script> <img id="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNgYAAAAAMAASsJTYQAAAAASUVORK5CYII=" alt=""> + <div id="controller"> + <a class="btn" onclick="toggle_play()"><span id="play-indicator" title="Pause slideshow">⏸</span></a> <a class="btn" onclick="new_selection()"><span title="Next slideshow">⏩︎</span></a> + <p>© pdp8 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a></p> + </div><a id="prev" onclick="prev()">❮</a> <a id="next" onclick="next()">❯</a> + <script> + + (function() { new_selection(); play() })(); + </script> + </div> + <script> + function show_vertical_menu() { + document.getElementById("menu").style.display = "none" + items = document.getElementsByClassName("item") + for (i = 0; i < items.length; i++) { + items[i].style.display = "block" + } + } + </script> +</body> +</html> |