-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
263 additions
and
174 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
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
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
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,20 @@ | |
text-align: center; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Varela'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('_public/fonts/Varela.ttf'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Titillium'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('_public/fonts/TitilliumWeb.ttf'); | ||
} | ||
|
||
</style> | ||
|
||
<footer class="footer"> | ||
|
@@ -43,18 +57,53 @@ | |
</a> | ||
<br> | ||
<span>You can submit your questions, feedbacks, and feature requests opening a issue on github or | ||
<a href=mailto:[email protected]> | ||
<strong>emailing us</strong> | ||
</a> | ||
<strong> | ||
<a class="m" href="#">0f67664f6c606b6a7b6e6d7c216c6062Of989968bbc95bb968a888c9caf968080 | ||
</a> | ||
</strong> | ||
</span> | ||
<br> | ||
<img class="logo" style="max-height:32px; vertical-align:middle" alt="" src="/_public/icons/ct/jolav32.png"> | ||
Jolav | ||
© 2023 - | ||
© <span id="year"></span> - | ||
<strong> | ||
<a href="https://github.com/jolav/codetabs">View on GitHub</a> | ||
</strong> | ||
<hr> | ||
</footer> | ||
<br> | ||
<!-- End --> | ||
|
||
<script> | ||
function getValue(oldValue) { | ||
var value = ""; | ||
var keyInHex = oldValue.substr(0, 2); | ||
var key = parseInt(keyInHex, 16); | ||
for (var n = 2; n < oldValue.length; n += 2) { | ||
var charInHex = oldValue.substr(n, 2) | ||
var char = parseInt(charInHex, 16); | ||
var output = char ^ key; | ||
value += String.fromCharCode(output); | ||
} | ||
return value; | ||
} | ||
|
||
const ms = document.getElementsByClassName("m"); | ||
|
||
for (let i = 0; i < ms.length; i++) { | ||
const el = ms[i] | ||
const oldValue = el.innerHTML; | ||
const aux = oldValue.split("O")[0] | ||
const value = getValue(aux); | ||
if (i === 0) { | ||
el.textContent = "emailing us" | ||
} | ||
if (i === 1) { | ||
el.textContent = value; | ||
} | ||
el.href = 'mailto:' + value; | ||
} | ||
|
||
const year = document.getElementById("year") | ||
year.textContent = new Date().getFullYear() | ||
</script> |
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 |
---|---|---|
|
@@ -34,6 +34,20 @@ | |
text-align: center; | ||
}*/ | ||
|
||
@font-face { | ||
font-family: 'Varela'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('_public/fonts/Varela.ttf'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Titillium'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('_public/fonts/TitilliumWeb.ttf'); | ||
} | ||
|
||
</style> | ||
|
||
|
||
|
@@ -49,18 +63,54 @@ | |
</span> | ||
<br> | ||
<span>You can submit your questions, feedbacks, and feature requests opening a issue on github or | ||
<a href=mailto:[email protected]> | ||
<strong>emailing us</strong> | ||
</a> | ||
<strong> | ||
<a class="m" href="#">0f67664f6c606b6a7b6e6d7c216c6062Of989968bbc95bb968a888c9caf968080 | ||
</a> | ||
</strong> | ||
</span> | ||
<br> | ||
<img class="logo" style="max-height:32px; vertical-align:middle" alt="" src="/_public/icons/ct/jolav32.png"> | ||
Jolav | ||
© 2023 - | ||
© <span id="year"></span> - | ||
<strong> | ||
<a href="https://github.com/jolav/codetabs">View on GitHub</a> | ||
</strong> | ||
<hr> | ||
</footer> | ||
<br> | ||
<!-- End --> | ||
|
||
|
||
<script> | ||
function getValue(oldValue) { | ||
var value = ""; | ||
var keyInHex = oldValue.substr(0, 2); | ||
var key = parseInt(keyInHex, 16); | ||
for (var n = 2; n < oldValue.length; n += 2) { | ||
var charInHex = oldValue.substr(n, 2) | ||
var char = parseInt(charInHex, 16); | ||
var output = char ^ key; | ||
value += String.fromCharCode(output); | ||
} | ||
return value; | ||
} | ||
|
||
const ms = document.getElementsByClassName("m"); | ||
|
||
for (let i = 0; i < ms.length; i++) { | ||
const el = ms[i] | ||
const oldValue = el.innerHTML; | ||
const aux = oldValue.split("O")[0] | ||
const value = getValue(aux); | ||
if (i === 0) { | ||
el.textContent = "emailing us" | ||
} | ||
if (i === 1) { | ||
el.textContent = value; | ||
} | ||
el.href = 'mailto:' + value; | ||
} | ||
|
||
const year = document.getElementById("year") | ||
year.textContent = new Date().getFullYear() | ||
</script> |
Oops, something went wrong.