blob: c0e325e7f787043ca05ac8041211b93c1bb7fddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<hr>
<div id="footer-container">
<div id="footer" class="container">
<p>
<a href="#" class="footer-link">Legal Notices</a> · <a href="/jetbrains" class="footer-link">Minteck and JetBrains</a> · <a href="#" class="footer-link">Copyright</a> · <a href="#" class="footer-link">Website source code</a> · <a href="#" class="footer-link">Report an issue with this website</a>
</p>
<div id="footer-links">
</div>
© <?= date('Y') ?> Minteck. | <span id="cutie">❤️ Twi <span id="cutie-inner">(cutie ^^)</span></span> | version <?= version() ?> (#<?= build() ?>)
</div>
<br>
</div>
<style>
#cutie-inner {
display: none;
}
#cutie:hover #cutie-inner {
display: inline-block;
}
</style>
</body>
</html>
|