48 lines
1.2 KiB
HTML
48 lines
1.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="styles/main.css" />
|
|
<script src="js/feather.min.js"></script>
|
|
<script src="js/nashboard.js"></script>
|
|
<script src="js/mainpage.js"></script>
|
|
<title>NashBoard</title>
|
|
</head>
|
|
|
|
<template id="booktag">
|
|
<span></span>
|
|
</template>
|
|
|
|
<template id="folder">
|
|
<div class="card">
|
|
<div class="xmark">
|
|
<i data-feather-t="x"></i>
|
|
</div>
|
|
<h3><i data-feather-t="folder"> </i><span id="folder_name"> </span></h3>
|
|
</div>
|
|
</template>
|
|
|
|
<template id="bookmark">
|
|
<div class="card">
|
|
<div class="xmark">
|
|
<i data-feather-t="x"></i>
|
|
</div>
|
|
<h3><i data-feather-t="link"> </i><span id="bookmark_name"></span></h3>
|
|
<a id="bookmark_link" href=""></a>
|
|
<div id="bookmark_tags" class="tags"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<h1>Dashboard protorype</h1>
|
|
<div id="bookmarks"></div>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
feather.replace();
|
|
</script>
|
|
</html>
|