We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 876a520 commit 554fd39Copy full SHA for 554fd39
assets/main.js
@@ -76,12 +76,12 @@ window.addEventListener("load", () => {
76
77
const year = document.getElementById("year");
78
year.textContent = new Date().getFullYear();
79
- const [fn, ln] = document.getElementsByTagName("title")[0].text.split(/\s|'/g);
+ const [ln, fn] = ['Serrette', 'Ben'];
80
const eml_a = document.getElementById("email");
81
if( eml_a ) {
82
const eml = `${fn}.${ln}@outlook.com`.toLowerCase();
83
eml_a.textContent = eml;
84
- eml_a.href = `mailto:${fn} ${ln}<${eml}>`;
+ eml_a.href = `mailto:${fn}.${ln}<${eml}>`;
85
}
86
87
document.getElementsByTagName("footer")[0].innerHTML += `<p>Last updated: <time id="last_updated" datetime=""></time></p>`
0 commit comments