Bento/index.html

95 lines
2.5 KiB
HTML
Raw Normal View History

2020-08-14 12:28:56 -05:00
<!DOCTYPE html>
<html lang="en">
2021-01-09 23:56:22 -06:00
<head>
<meta charset="UTF-8" />
<title>Bento</title>
2021-07-05 22:47:21 -05:00
<link
rel=" shortcut icon"
type="image/png"
href="assets/icons/favicon.png"
/>
<link rel="stylesheet" href="app.css" />
<script src="https://unpkg.com/lucide@latest"></script>
2021-01-09 23:56:22 -06:00
</head>
2020-08-14 12:28:56 -05:00
2021-07-20 20:50:46 -05:00
<!--
╔╗ ╔═╗╔╗╔╔╦╗╔═╗
╠╩╗║╣ ║║║ ║ ║ ║
╚═╝╚═╝╝╚╝ ╩ ╚═╝
-->
2021-01-09 23:56:22 -06:00
<body class="">
<button id="themeButton">
<i id="themeIcon" icon-name="moon"></i>
2021-01-09 23:56:22 -06:00
</button>
<div class="container">
<!-- Clock and Greetings -->
2020-08-14 12:28:56 -05:00
2021-01-09 23:56:22 -06:00
<div class="timeBlock">
<div class="clock">
<div id="hour" class=""></div>
<div id="separator" class=""></div>
<div id="minutes" class=""></div>
2020-08-14 12:28:56 -05:00
</div>
2021-01-09 23:56:22 -06:00
<div id="greetings" class=""></div>
</div>
2020-10-25 20:28:32 -06:00
2021-01-09 23:56:22 -06:00
<!-- Date and Weather -->
<div class="weatherBlock">
2021-07-25 11:16:39 -05:00
<div class="date">
2021-01-09 23:56:22 -06:00
<div id="month" class=""></div>
<div id="day" class=""></div>
</div>
2021-07-25 11:16:39 -05:00
<div class="weather">
<div class="weatherIcon">
2021-07-05 22:47:21 -05:00
<img src="assets/icons/OneDark/unknown.png" />
2021-01-09 23:56:22 -06:00
</div>
2021-07-25 11:16:39 -05:00
<div class="weatherValue">
2021-01-09 23:56:22 -06:00
<p class="">- °<span class="g">c</span></p>
</div>
2021-07-25 11:16:39 -05:00
<div class="weatherDescription">
2021-01-09 23:56:22 -06:00
<p class=""></p>
</div>
</div>
</div>
2021-07-20 20:50:46 -05:00
<!--
┌┐ ┬ ┬┌┬┐┌┬┐┌─┐┌┐┌┌─┐
├┴┐│ │ │ │ │ ││││└─┐
└─┘└─┘ ┴ ┴ └─┘┘└┘└─┘
-->
2021-01-09 23:56:22 -06:00
2021-07-25 11:16:39 -05:00
<div class="buttons" id="buttonsContainer"></div>
2021-01-09 23:56:22 -06:00
2021-07-20 20:50:46 -05:00
<!--
┬ ┬┌─┐┌┬┐┌─┐
│ │└─┐ │ └─┐
┴─┘┴└─┘ ┴ └─┘
-->
2021-01-09 23:56:22 -06:00
2021-07-20 20:50:46 -05:00
<div class="card list list__1" id="list_1"></div>
2021-01-09 23:56:22 -06:00
2021-07-20 20:50:46 -05:00
<div class="card list list__2" id="list_2"></div>
2021-01-09 23:56:22 -06:00
</div>
2021-07-05 22:47:21 -05:00
<!-- Config -->
<script src="config.js"></script>
2021-01-09 23:56:22 -06:00
2021-07-05 22:47:21 -05:00
<!-- Scripts -->
<script src="assets/js/time.js"></script>
<script src="assets/js/theme.js"></script>
<script src="assets/js/greeting.js"></script>
<script src="assets/js/weather.js"></script>
2021-07-20 20:50:46 -05:00
<script src="assets/js/cards.js"></script>
<script src="assets/js/lists.js"></script>
2021-01-09 23:56:22 -06:00
<script>
lucide.createIcons();
2021-01-09 23:56:22 -06:00
</script>
</body>
2021-07-20 20:50:46 -05:00
<!-- Developed and designed by Miguel R. Ávila: -->
2021-07-05 22:47:21 -05:00
<!-- https://github.com/migueravila -->
2020-08-14 12:28:56 -05:00
</html>