-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from RDjarbeng/dayofyearpage
Dayofyear page
- Loading branch information
Showing
10 changed files
with
692 additions
and
17 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!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"> | ||
<meta name="description" content="Countdown application with light and dark mode auto functionality"> | ||
<meta name="Keywords" content="Countdown, Midnight countdown"> | ||
<title>Final Countdown</title> | ||
<link href="../img/icons/favicon.png" rel="icon"> | ||
<meta name="Author" content="R.Djarbeng| A.Nyakotey"> | ||
<link rel="stylesheet" href="../css/today.css"> | ||
<link rel="stylesheet" href="../css/themes.css"> | ||
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> | ||
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"></noscript> | ||
<link rel="manifest" href="/manifest.json"> | ||
<!-- ios support --> | ||
<link rel="apple-touch-icon" href="../img/icons/favicon.png"> | ||
<meta name="apple-mobile-web-app-status-bar" content="#7b68ee"> | ||
<meta name="theme-color" content="#7b68ee"> | ||
<meta name="theme-color" media="(prefers-color-scheme: light)" content="grey"> | ||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#7b68ee"> | ||
</head> | ||
|
||
<body class="dark" data-theme="purple"> | ||
<aside class="sidebar sidebar-hide"> | ||
<section class="sidebar-content"> | ||
<div class="brand"> | ||
<div class="brand-logo"><img src="../img/icons/chrome512.png" alt="logo"></div> | ||
<div class="brand-name">Final CountDown</div> | ||
</div> | ||
<hr> | ||
<div class="opt-group">OPTIONS</div> | ||
<div class="sidebar-list"> | ||
<div class="sidebar-list-items"> | ||
<i class="fas fa-home"></i> Home | ||
</div> | ||
<div class="sidebar-list-items"> | ||
<i class="fas fa-clock"></i> My CountDowns | ||
</div> | ||
<div class="sidebar-list-items"> | ||
<i class="fas fa-upload"></i> Set Custom Background | ||
</div> | ||
<div class="sidebar-list-items"> | ||
<i class="fas fa-adjust"></i> Change Theme | ||
</div> | ||
<section class="pick-color"> | ||
<span class="pick-color-ico" data-settheme="red"></span> | ||
<span class="pick-color-ico" data-settheme="pink"></span> | ||
<span class="pick-color-ico" data-settheme="yellow"></span> | ||
<span class="pick-color-ico" data-settheme="green"></span> | ||
<span class="pick-color-ico" data-settheme="blue"></span> | ||
<span class="pick-color-ico" data-settheme="purple"></span> | ||
<span class="pick-color-ico" data-settheme="black"></span> | ||
</section> | ||
<div class="sidebar-list-items"> | ||
<i class="fas fa-calendar-day"></i> Today | ||
</div> | ||
<div class="sidebar-list-items"> | ||
<i class="fas fa-question-circle"></i> About | ||
</div> | ||
</div> | ||
</section> | ||
</aside> | ||
<header class="header"> | ||
<div class="nav"> | ||
<i class="fas fa-bars fa-lg"></i> | ||
</div> | ||
<div class="logo"> | ||
<a href="../index.html"><div class="logo-ico"><img src="../img/icons/chrome192.png" alt="logo"></div></a> | ||
<div class="logo-name">Final CountDown</div> | ||
</div> | ||
<div class="mode-row"> | ||
<span class="toggleMode" id='themeToggle'><i class="fas fa-sun"></i></span> | ||
</div> | ||
</header> | ||
<main> | ||
<section class="container"> | ||
<div class="date-row"> | ||
<div class="day-of-year"> | ||
<div class="day-text">DAY</div> | ||
<div class="day-count" id='countDay'>X</div> | ||
<div class="divider"></div> | ||
<div class="year-count">365</div> | ||
|
||
<div class="share-row"> | ||
<div class="sm share-whatsapp" | ||
id ="sendWhatsappButton" | ||
data-action="share/whatsapp/share" | ||
title="share to Whatsapp"> | ||
<i class="fab fa-whatsapp"></i> | ||
</div> | ||
<div class="sm copy-link" title="copy link"><i class="far fa-copy"></i></div> | ||
</div> | ||
</div> | ||
<div class="date"> | ||
<div class="day-of-week" id ="dayOfWeek">Monday</div> | ||
<div class="day" id ="dayOfMonth">11</div> | ||
<div class="month" id="month">Mar</div> | ||
<div class="year" id="year">2022</div> | ||
<div class="time" id="time">11:00 pm</div> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
<script src="../js/error.js"></script> | ||
<script src="../app.js"></script> | ||
<script src="../js/sidebar.js"></script> | ||
<script src="../js/loadCustomUI.js"></script> | ||
<script src="../js/today.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.