build
This commit is contained in:
@ -1445,6 +1445,8 @@ if (window.innerWidth > 650) {
|
||||
const closeButton = document.querySelector(".close-dialog");
|
||||
const hero = document.querySelector(".hero");
|
||||
|
||||
hero.tabIndex = 0;
|
||||
|
||||
hero.addEventListener("click", (e) => dialog.showModal());
|
||||
hero.addEventListener("keydown", (e) => {
|
||||
if (e.key === "Enter" || e.key === " ") {
|
||||
@ -1541,7 +1543,7 @@ if (window.innerWidth > 650) {
|
||||
<button class="close-dialog" autofocus="" aria-label="close the image modal">×</button>
|
||||
<img class="modal-img" src="/img/fedilearns.jpg" alt="the logo for fedilearns, which is a grey newspaper icon with the fediverse icon (a rainbow pentagon) superimposed." loading="lazy" decoding="async" width="512" height="472">
|
||||
</dialog>
|
||||
<img tabindex="0" class="hero" src="/img/fedilearns.jpg" alt="the logo for fedilearns, which is a grey newspaper icon with the fediverse icon (a rainbow pentagon) superimposed." loading="lazy" decoding="async" width="512" height="472">
|
||||
<img class="hero" src="/img/fedilearns.jpg" alt="the logo for fedilearns, which is a grey newspaper icon with the fediverse icon (a rainbow pentagon) superimposed." loading="lazy" decoding="async" width="512" height="472">
|
||||
|
||||
|
||||
<p>My new project <a href="https://fedilearns.fyi" target="_blank" rel="external">FediLearns</a> is a learning-focused classifieds page for the fediverse. Check it out!</p>
|
||||
@ -1603,6 +1605,6 @@ if (window.innerWidth > 650) {
|
||||
</footer>
|
||||
|
||||
|
||||
<!-- This page `/fedilearns/` was built on 2026-05-14T03:50:32.002Z -->
|
||||
<!-- This page `/fedilearns/` was built on 2026-05-14T15:45:41.490Z -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user