65 lines
2.2 KiB
HTML
65 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&display=swap" rel="stylesheet">
|
|
<title>~</title>
|
|
<script>
|
|
function ddgSearch(event) {
|
|
event.preventDefault()
|
|
value = document.querySelector(".search-input").value
|
|
if (value != null){
|
|
window.location.assign(`https://duckduckgo.com/?q=${document.querySelector(".search-input").value}`);
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<img src="image.gif">
|
|
<h1>~/</h1>
|
|
<form onsubmit="ddgSearch(event)">
|
|
<input class="search-input" placeholder="ddg search" autofocus></input>
|
|
<input type="submit" hidden/>
|
|
</form>
|
|
|
|
<div class="bookmark-container">
|
|
<div class="bookmarks">
|
|
<h2>social</h2>
|
|
<li><a href="https://reddit.com">reddit</a></li>
|
|
<li><a href="https://twitter.com">twitter</a></li>
|
|
<li><a href="https://tiktok.com">tiktok</a></li>
|
|
<li><a href="https://linkedin.com">linkedin</a></li>
|
|
</div>
|
|
<div class="bookmarks">
|
|
<h2>play</h2>
|
|
<li><a href="https://youtube.com">youtube</a></li>
|
|
<li><a href="https://twitch.tv">twitch</a></li>
|
|
<li><a href="https://jelly.fukurokuju.dev">jelly</a></li>
|
|
<li><a href="https://trakt.tv/">trakt</a></li>
|
|
</div>
|
|
<div class="bookmarks">
|
|
<h2>devnews</h2>
|
|
<li><a href="https://theregister.com/">el reg</a></li>
|
|
<li><a href="https://hackaday.com/">hackaday</a></li>
|
|
<li><a href="https://gamingonlinux.com/">gamingonlinux</a></li>
|
|
</div>
|
|
<div class="bookmarks">
|
|
<h2>dev</h2>
|
|
<li><a href="https://git.roboces.dev">gitea</a></li>
|
|
<li><a href="https://gitlab.com">gitlab</a></li>
|
|
<li><a href="https://github.com">github</a></li>
|
|
</div>
|
|
<div class="bookmarks">
|
|
<h2>hlab</h2>
|
|
<li><a href="https://auth.fukurokuju.dev/">authentik</a></li>
|
|
<li><a href="https://ramiel.fukurokuju.dev/">ramiel</a></li>
|
|
<li><a href="https://192.168.1.107:8007/">pbs</a></li>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|