mirror of
https://github.com/asterisk727/two-torial.git
synced 2026-09-26 16:58:13 +03:00
18 lines
692 B
JavaScript
18 lines
692 B
JavaScript
document.addEventListener("DOMContentLoaded", function() {
|
|
const infoBox = document.createElement('div');
|
|
infoBox.innerHTML = `
|
|
<h1 style="font-weight: bold;">
|
|
This is a continuation of the original TWO-TORIAL website. <br>
|
|
Read more info about us
|
|
<a href="https://info.re-two-torial.xyz" target="_blank" rel="noopener noreferrer" style="color: #5488e8;">here</a>
|
|
<br> <br>
|
|
<span style="color: lightcoral;">Recently Updated!</span>
|
|
</h1>
|
|
`;
|
|
const mdContent = document.querySelector('.md-content__inner');
|
|
|
|
if (mdContent) {
|
|
mdContent.parentNode.insertBefore(infoBox, mdContent);
|
|
}
|
|
});
|