41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="de">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>Bleeter</title>
|
||
|
|
<link rel="stylesheet" href="style.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="bleeter-root" class="bleeter-root hidden">
|
||
|
|
<main class="tablet">
|
||
|
|
<div class="tablet-glass"></div>
|
||
|
|
<section class="screen">
|
||
|
|
<header class="topbar">
|
||
|
|
<button class="brand" data-page="feed" aria-label="Bleeter Startseite">
|
||
|
|
<img referrerpolicy="no-referrer" src="https://i.ibb.co/GfLX529K/bleeter.png" alt="Bleeter">
|
||
|
|
</button>
|
||
|
|
<div></div>
|
||
|
|
<div class="search-wrap">
|
||
|
|
<input id="global-search" class="global-search" type="search" placeholder="@username suchen" autocomplete="off">
|
||
|
|
<div id="search-results" class="search-results hidden"></div>
|
||
|
|
</div>
|
||
|
|
<button class="top-profile" id="top-profile" data-page="profile" aria-label="Profil oeffnen">
|
||
|
|
<img id="top-profile-avatar" alt="">
|
||
|
|
</button>
|
||
|
|
<button class="top-close" id="top-close" title="Schließen (ESC)" aria-label="Bleeter schließen">✕</button>
|
||
|
|
</header>
|
||
|
|
<div class="app-grid">
|
||
|
|
<nav class="side-nav" id="side-nav"></nav>
|
||
|
|
<section class="content" id="content"></section>
|
||
|
|
<aside class="context" id="context"></aside>
|
||
|
|
</div>
|
||
|
|
<div id="toast-layer" class="toast-layer"></div>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
<input id="media-file-input" class="hidden" type="file" accept="image/jpeg,image/png">
|
||
|
|
</div>
|
||
|
|
<script src="script.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|