Bento/index.html

80 lines
2.0 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" />
2021-01-09 23:56:22 -06:00
</head>
2020-08-14 12:28:56 -05:00
2022-02-19 00:04:12 +03: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">
2022-02-03 11:04:50 -06:00
<div id="hour"></div>
<div id="separator"></div>
<div id="minutes"></div>
2020-08-14 12:28:56 -05:00
</div>
2022-02-03 11:04:50 -06:00
<div id="greetings"></div>
2021-01-09 23:56:22 -06:00
</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">
2022-02-03 11:04:50 -06:00
<div id="month"></div>
<div id="day"></div>
2021-01-09 23:56:22 -06:00
</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">
2022-02-03 11:04:50 -06:00
<p>- °<span class="g">c</span></p>
2021-01-09 23:56:22 -06:00
</div>
2021-07-25 11:16:39 -05:00
<div class="weatherDescription">
2022-02-03 11:04:50 -06:00
<p></p>
2021-01-09 23:56:22 -06:00
</div>
</div>
</div>
<div class="linksBlock" id="linksBlock">
<div class="linksBlockLeft" id="linksBlockLeft"></div>
<div class="linksBlockRight" id="linksBlockRight"></div>
</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/layout.js"></script>
2021-07-05 22:47:21 -05:00
<script src="assets/js/theme.js"></script>
2022-02-10 18:19:11 -06:00
<script src="assets/js/time.js"></script>
2021-07-05 22:47:21 -05:00
<script src="assets/js/greeting.js"></script>
<script src="assets/js/weather.js"></script>
2021-07-20 20:50:46 -05:00
2022-02-10 18:19:11 -06:00
<!-- Generators -->
<script src="assets/js/buttons.js"></script>
<script src="assets/js/lists.js"></script>
2021-01-09 23:56:22 -06:00
</body>
2022-02-03 11:04:50 -06:00
<!-- Developed and designed by Miguel Ávila: -->
<!-- https://avila.sh-->
2020-08-14 12:28:56 -05:00
</html>