-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add accordion button to show how to cite post
- Loading branch information
1 parent
d61cc45
commit 750d69d
Showing
3 changed files
with
52 additions
and
16 deletions.
There are no files selected for viewing
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,20 @@ | ||
// | ||
// date.js: update dynamically the date | ||
// | ||
|
||
function getFormattedCurDate() { | ||
const date = new Date(); | ||
const options = { day: 'numeric', month: 'long', year: 'numeric' }; | ||
return date.toLocaleDateString('pt-BR', options); | ||
} | ||
|
||
function updateDate() { | ||
const element = document.getElementById('curDate'); | ||
if (element) { | ||
element.textContent = getFormattedCurDate(); | ||
} | ||
} | ||
|
||
window.onload = function() { | ||
updateDate(); | ||
}; |