Skip to content

Commit

Permalink
add copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Stef-00012 committed Sep 14, 2024
1 parent 7feff20 commit 88f6d27
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,13 @@ p.note {
.song-url {
color: black;
text-decoration: none;
}

footer {
text-align: center;
}

footer p {
margin-bottom: 0;
padding: 15px;
}
3 changes: 3 additions & 0 deletions assets/js/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
const copyrightElement = document.getElementById('copyrightYear')
copyrightElement.innerText = new Date().getFullYear()

const weekdays = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
const months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']

Expand Down
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<html>
<head>
<title>Receiptify</title>
<meta name="author" content="Receipt">
<meta name="description" content="Converts your top tracks to a receipt. Currently supports Spotify with a limit of 50 tracks and Last.FM with no limit">
<meta property="og:title" content="Receipt">
Expand Down Expand Up @@ -150,6 +151,10 @@ <h2 class="align-center bold" id="timePeriod">
<p class="note">note: spotify login ignores all of the inputs above</p>
</form>
</div>

<footer>
<p>© <span id="copyrightYear">2024</span> Stefano Del Prete. All rights reserved.</p>
</footer>
</body>

<script src="https://cdnjs.cloudflare.com/ajax/libs/luxon/3.4.3/luxon.min.js"></script>
Expand Down

0 comments on commit 88f6d27

Please sign in to comment.