2024-04-20 10:10:34 +00:00
<!DOCTYPE html>
< html lang = "en" dir = "ltr" id = "page-top" >
< head >
< meta charset = "UTF-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2024-04-20 10:34:44 +00:00
< meta property = "og:title" content = "Leilukin's Hub" >
2024-04-20 10:10:34 +00:00
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta name = "description" content = "Home page of Leilukin's Hub." >
< meta name = "generator" content = "Eleventy v2.0.1" >
< meta property = "og:type" content = "website" >
< meta property = "og:url" content = "https://leilukin.neocities.org/" >
< meta property = "og:site_name" content = "Leilukin's Hub" >
< meta property = "og:locale" content = "en_MY" >
< meta property = "og:description" content = "Home page of Leilukin's Hub." >
< meta name = "twitter:card" content = "summary" >
< meta name = "twitter:url" content = "https://leilukin.neocities.org/" >
< meta name = "twitter:description" content = "Home page of Leilukin's Hub." >
< link rel = "canonical" href = "https://leilukin.neocities.org/" >
< link rel = "stylesheet" href = "/assets/css/main.css" >
< link rel = "stylesheet" href = "/assets/fonts/noto-sans/noto-sans.css" >
< link href = "/assets/fonts/fontawesome/css/fontawesome.css" rel = "stylesheet" / >
< link href = "/assets/fonts/fontawesome/css/brands.css" rel = "stylesheet" / >
< link href = "/assets/fonts/fontawesome/css/solid.css" rel = "stylesheet" / >
< link rel = "apple-touch-icon" sizes = "180x180" href = "/assets/favicon/apple-touch-icon.png" >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "/assets/favicon/favicon-32x32.png" >
< link rel = "icon" type = "image/png" sizes = "16x16" href = "/assets/favicon/favicon-16x16.png" >
< link rel = "manifest" href = "/assets/favicon/site.webmanifest" >
< title >
Leilukin's Hub
< / title >
< / head >
< body >
< header class = "hero" >
< div class = "hero__top-bar hidden" > < / div >
< div class = "hero__img" >
2024-04-20 12:00:02 +00:00
< img fetchpriority = "high" src = "/assets/leilukin/Leilukins-Hub-website-banner.png" alt = "Banner of Leilukin's Hub" >
2024-04-20 10:10:34 +00:00
< / div >
< / header >
< style >
.hero {
width: 100%;
background-color: var(--clr-hero-bg);
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.hero__top-bar {
background-color: var(--clr-navbar-bg);
width: 100%;
padding: 0.5em 0;
}
.hero__img {
display: grid;
place-content: center;
}
.hero img {
2024-04-20 11:43:13 +00:00
object-fit: contain;
2024-04-20 10:10:34 +00:00
overflow: hidden;
filter: drop-shadow(0.1rem 0.1rem 0.2rem black);
2024-04-20 11:43:13 +00:00
max-height: 16rem;
2024-04-20 10:10:34 +00:00
}
< / style >
< script defer >
const hero = document.querySelector(".hero");
const todayEvent = getTodayEvent();
const heroTopBarEl = document.querySelector(".hero__top-bar");
const headerImgEl = document.querySelector(".hero__img");
if (todayEvent != "No event") {
heroTopBarEl.classList.remove('hidden');
if (todayEvent == "Leilukin's Birthday" || todayEvent == "Leilukin's Hub Anniversary") {
heroTopBarEl.innerHTML = getBlurbHtml(todayEvent);
} else {
headerImgEl.classList.add(getBanner(todayEvent));
heroTopBarEl.innerHTML = getBlurbHtml(todayEvent);
}
}
function getTodayEvent() {
const date = new Date();
const month = date.getMonth() + 1;
const day = date.getDate();
if (month == 3 & & day == 1)
return "Zero Discrimination Day";
else if (month == 3 & & day == 31)
return "Trans Day of Visibility";
else if (month == 4 & & day == 6)
return "International Asexuality Day";
else if (month == 4 & & day == 26)
return "Lesbian Visibility Day";
else if (month == 5 & & day == 17)
return "IDAHOBIT";
else if (month == 5 & & day == 19)
return "Agender Pride Day";
else if (month == 5 & & day == 25)
return "Pansexual and Panromantic Awareness & Visibility Day";
else if (month == 6)
return "Pride Month";
else if (month == 7 & & day == 14)
return "Non-Binary People's Day";
else if (month == 7 & & day == 28)
return "Leilukin's Birthday";
else if (month == 9 & & day == 11)
return "Leilukin's Hub Anniversary";
else if (month == 9 & & day == 23)
return "Bi Visibility Day";
else if (month == 10 & & day == 8)
return "International Lesbian Day";
else if (month == 10 & & day == 11)
return "National Coming Out Day";
else if (month == 10 & & day == 26)
return "Intersex Awareness Day";
else
return "No event";
}
function getBanner(day) {
switch (day) {
case "Zero Discrimination Day":
return "flag-progress-intersex";
break;
case "Trans Day of Visibility":
return "flag-trans";
break;
case "International Asexuality Day":
return "flag-ace";
break;
case "Lesbian Visibility Day":
return "flag-lesbian";
break;
case "IDAHOBIT":
return "flag-progress";
break;
case "Agender Pride Day":
return "flag-agender";
break;
case "Pansexual and Panromantic Awareness & Visibility Day":
return "flag-pan";
break;
case "Pride Month":
return "flag-progress-intersex";
break;
case "Non-Binary People's Day":
return "flag-non-binary";
break;
case "Bi Visibility Day":
return "flag-bi";
break;
case "International Lesbian Day":
return "flag-lesbian";
break;
case "National Coming Out Day":
return "flag-rainbow";
break;
case "Intersex Awareness Day":
return "flag-intersex";
break;
default:
return "";
}
}
function getBlurbHtml(day) {
switch (day) {
case "Zero Discrimination Day":
return `
Today is < a href = "https://www.unaids.org/en/zero-discrimination-day" target = "_blank" > Zero Discrimination Day< / a >
`;
break;
case "Trans Day of Visibility":
return `
Today is < a href = "https://www.manygendersonevoice.org/tdov.html" target = "_blank" > Trans Day of Visibility< / a >
`;
break;
case "International Asexuality Day":
return `
Today is < a href = "https://internationalasexualityday.org/en" target = "_blank" > International Asexuality Day< / a >
`;
break;
case "Lesbian Visibility Day":
return `
Today is < a href = "https://www.lesbianvisibilityweek.com" target = "_blank" > Lesbian Visibility Day< / a >
`;
break;
case "IDAHOBIT":
return `
Today is < a href = "https://may17.org" target = "_blank" > International Day Against Homophobia, Biphobia and Transphobia< / a > < / span >
`;
break;
case "Agender Pride Day":
return `
Today is < a href = "https://www.believeoutloud.com/voices/article/agender-pride-day/" target = "_blank" > Agender Pride Day< / a > < / span >
`;
break;
case "Pansexual and Panromantic Awareness & Visibility Day":
return `
Today is < a href = "https://genderedintelligence.co.uk/panvisibilityday" target = "_blank" > Pansexual and Panromantic Visibility Day< / a >
`;
break;
case "Pride Month":
return `
Happy < a href = "https://www.loc.gov/lgbt-pride-month/about/" target = "_blank" > Pride Month< / a > !
`;
break;
case "Non-Binary People's Day":
return `
Today is < a href = "https://www.manygendersonevoice.org/non-binary-peoples-day.html" target = "_blank" > Non-Binary People's Day< / a >
`;
break;
case "Leilukin's Birthday":
return `
Today is Leilukin's birthday
`;
break;
case "Leilukin's Hub Anniversary":
return `
Today is the anniversary of the launch of Leilukin's Hub
`;
break;
case "Bi Visibility Day":
return `
Today is < a href = "https://bivisibilityday.com/about" target = "_blank" > Bi Visibility Day< / a >
`;
break;
case "International Lesbian Day":
return `
Today is < a href = "https://www.lgbtiqhealth.org.au/international_lesbian_day2" target = "_blank" > International Lesbian Day< / a >
`;
break;
case "National Coming Out Day":
return `
Today is < a href = "https://www.hrc.org/resources/national-coming-out-day" target = "_blank" > National Coming Out Day< / a >
`;
break;
case "Intersex Awareness Day":
return `
Today is < a href = "https://interactadvocates.org/intersex-awareness-day" target = "_blank" > Intersex Awareness Day< / a >
`;
break;
default:
return ``;
}
}
< / script >
< nav class = "navbar" >
< ul class = "nav__menu" >
< li >
< a aria-current = "page" href = "/" >
Home
< / a >
< / li >
< li >
< a href = "/about/" >
About
< / a >
< / li >
< li >
< a href = "/now/" >
Now
< / a >
< / li >
< li >
< a href = "/blog/" >
Blog
< / a >
< / li >
< li >
< a href = "/articles/" >
Articles
< / a >
< / li >
< li >
< a href = "/projects/" >
Projects
< / a >
< / li >
< li >
< a href = "/shrines/" >
Shrines
< / a >
< / li >
< li >
< a href = "/links/" >
Links
< / a >
< / li >
< li > < a href = "https://leilukin.123guestbook.com/" > Guestbook< / a > < / li >
< / ul >
< / nav >
< style >
.navbar {
background: var(--clr-navbar-bg);
padding: 0 0.6rem;
width: 100%;
z-index: 999;
position: sticky;
top: 0;
}
.navbar a {
color: var(--clr-navbar-link);
text-decoration: none;
cursor: pointer;
}
.navbar a:hover {
color: var(--clr-link-hover);
}
.navbar a:focus {
outline-offset: 0.3em;
outline: 0.15em solid var(--clr-navbar-link);
}
.nav__menu {
list-style: none;
padding: 0;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
gap: 0.5rem;
}
< / style >
< main >
< header class = "main__header" >
< h1 > Welcome!< / h1 >
< p > Home page of Leilukin' s Hub.< / p >
< / header >
< div class = "content__wrapper" >
< div class = "content content--divided" >
< section class = "content__section" >
< p > Hello! You can call me Leilukin. Welcome to my website! This site is my own personal hub and corner on the internet.< / p >
< p > You can browse all my contents published on this site through the < a href = "/archive" > Archive< / a > page, or the < a href = "/categories" > Content Categories< / a > page.< / p >
< p > You may use the < a href = "/sitemap" > site map< / a > to quickly navigate this website.< / p >
< p > Feel free to drop a message and say hi on < a href = "https://leilukin.123guestbook.com/" target = "_blank" > my guestbook< / a > !< / p >
< p > Enjoy your stay!< / p >
< / section >
< section class = "content__section" >
< h2 > Link to My Website< / h2 >
< p > You can link to my website with this button:< / p >
< div class = "site-btn__container" >
< div >
< a href = "https://leilukin.neocities.org/" target = "_blank" > < img src = "/assets/leilukin/Leilukins-Hub-button.png" alt = "Button of Leilukin's Hub" title = "Leilukin's Hub" > < / a >
< / div >
< textarea aria-label = "HTML of Leilukin's Hub website button" class = "site-btn__textarea textarea-for-copy" rows = "4" > < a href = "https://leilukin.neocities.org/" target = "_blank" > < img src = "https://leilukin.neocities.org/assets/leilukin/Leilukins-Hub-button.png" alt = "Button of Leilukin's Hub" title = "Leilukin's Hub" > < / a > < / textarea >
< button class = "copy-txt-btn" > Copy HTML< / button >
< / div >
< p > Credit to < a href = "https://github.com/hekate2" target = "_blank" > hekate2< / a > for their < a href = "https://hekate2.github.io/buttonmaker/" target = "_blank" > 88x31 Web Button Maker< / a > !< / p >
< style >
.site-btn__container {
display: flex;
gap: 1rem;
align-items: center;
margin: 0.5rem 0;
}
.site-btn__textarea {
width: 10rem;
height: 4rem;
font-size: 0.75rem;
background-color:black;
color: var(--clr-body-txt);
}
.copy-txt-btn {
border: none;
background: var(--clr-link-btn-bg);
color: var(--clr-body-txt);
padding: 0.3rem 0.8rem;
border-radius: 0.5rem;
font-size: 0.9rem;
font-weight: bold;
}
.copy-txt-btn:hover {
background: var(--clr-link-hover);
}
< / style >
< script defer >
document.querySelector(".copy-txt-btn").onclick = () => {
document.querySelector(".textarea-for-copy").select();
document.execCommand('copy');
}
< / script >
< / section >
< section class = "content__section" >
< h2 > Updates< / h2 >
< div class = "text-box" >
2024-04-21 12:59:43 +00:00
< h3 class = "date-style" > 21 April 2024:< / h3 >
2024-04-20 10:10:34 +00:00
< ul >
2024-04-21 13:05:19 +00:00
< li > New blog post: < a href = "/blog/posts/2024-04-21-april-2024-leilukins-hub-overhaul-with-eleventy/" > April 2024 Leilukin's Hub Overhaul with Eleventy< / a > .< / li >
2024-04-20 10:10:34 +00:00
< / ul >
< p > < a href = "/changelogs" > View all site changelogs< / a > < / p >
< / div >
< p > You can subscribe to the < a href = "/feed.xml" target = "blank" > Leilukin's Hub RSS feed< / a > or follow < a href = "https://neocities.org/site/leilukin" target = "_blank" > my Neocities profile< / a > to get notified of the updates on this website.< / p >
< div class = "web-btn-wrapper" style = "margin-top: 0.5em;" >
< a href = "/feed.xml" target = "blank" title = "Leilukin's Hub RSS Feed" >
< img src = "/assets/buttons/rss-button.gif" alt = "RSS feed button" >
< / a >
< / div >
< / section >
< section class = "content__section" >
< h2 > Always Proud< / h2 >
< div class = "web-btn-wrapper" >
2024-04-20 10:28:35 +00:00
< img src = "/assets/buttons/progress.png" alt = "A website button of the 2018 Progress Flag" title = "2018 Progress Flag by Daniel Quasar (2018)" >
< img src = "/assets/buttons/9_stripe.png" alt = "A website button of the 9 stripe rainbow flag" title = "Nine-Stripe Rainbow Flag by Gilbert Baker (2017)" >
< img src = "/assets/buttons/lesbian.png" alt = "A website button of the lesbian pride flag" title = "I am a lesbian" >
< img src = "/assets/buttons/nonbinary.png" alt = "A website button of the non-binary pride flag" title = "I am non-binary" >
< img src = "/assets/buttons/demigirl.png" alt = "A website button of the demigirl pride flag" title = "I am a demiwoman" >
< img src = "/assets/buttons/agender.png" alt = "A website button of the agender pride flag" title = "I am agender" >
< img src = "/assets/buttons/bigender.png" alt = "A website button of the bigender pride flag" title = "I am bigender" >
2024-04-20 10:10:34 +00:00
< / div >
< p > Credit to < a href = "https://rainy.gay/pride/pridebuttons" target = "_blank" > Dime< / a > for these pride buttons!< / p >
< / section >
< section class = "content__section" >
< h2 > Webrings< / h2 >
< div class = "web-btn-wrapper" >
< div style = "border: none; display: inline-flex" > < a href = "https://isaacfish.neocities.org/webring/25.html" target = "_blank" > < img src = "/assets/webrings/queercoded-left.png" alt = "left arrow" > < / a > < a href = "https://isaacfish.neocities.org/webring/" target = "_blank" > < img src = "/assets/webrings/queercoded.png" alt = "queer coded webring" title = "The Queer Coded Webring" > < / a > < a href = "https://isaacfish.neocities.org/webring/27.html" target = "_blank" > < img src = "/assets/webrings/queercoded-right.png" alt = "right arrow" > < / a > < / div >
< / div >
< / section >
< section class = "content__section" >
< h2 > Support Me< / h2 >
< p > If you enjoy my work, you can support me on Ko-Fi or Buy Me a Coffee:< / p >
< div class = "support-me" >
<!-- Ko - Fi button -->
< script webc:keep webc:bucket = "defer" type = 'text/javascript' src = 'https://storage.ko-fi.com/cdn/widget/Widget_2.js' > < / script >
< script webc:keep webc:bucket = "defer" type = 'text/javascript' > kofiwidget2 . init ( 'Support Me on Ko-fi' , '#7A37A3' , 'A1042UH4' ) ; kofiwidget2 . draw ( ) ; < / script >
<!-- Buy Me a Coffee button -->
< script webc:keep type = "text/javascript" src = "https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name = "bmc-button" data-slug = "leilukin" data-color = "#7a37a3" data-emoji = "" data-font = "Cookie" data-text = "Buy me a coffee" data-outline-color = "#ffffff" data-font-color = "#ffffff" data-coffee-color = "#FFDD00" > < / script >
< / div >
< style >
.support-me {
display: flex;
flex-wrap: wrap;
gap: 1em;
align-items: center;
margin-top: 0.7em;
}
< / style >
< / section >
< / div >
< / div >
< style >
.breadcrumbs {
list-style: none;
padding: 0;
margin: 0 0 0.7em 0;
display: flex;
gap: 0.5em;
flex-wrap: wrap;
justify-content: center;
}
< / style >
< / main >
< footer class = "footer" >
< p > Made with ♥ by Leilukin since < time > 11 September 2022< / time > < / p >
< ul class = "footer__links" >
2024-04-20 10:59:51 +00:00
< li > < a
href="/sitemap/
">Site Map< / a > < / li >
< li > < a
href="/changelogs/"
>Changelogs< / a > < / li >
2024-04-20 10:10:34 +00:00
< li > < a href = "/feed.xml" > RSS< / a > < / li >
< / ul >
< / footer >
< style >
.footer {
margin-top: auto;
background: var(--clr-main-footer-bg);
padding: 0.8rem;
text-align: center;
display: grid;
}
.footer p {
padding: 0;
}
.footer__links {
justify-self: center;
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 0.7em;
}
2024-04-20 10:59:51 +00:00
.footer__links li:not(:last-child)::after {
content: '|';
padding-left: 0.6em;
}
2024-04-20 10:10:34 +00:00
@media only screen and (min-width: 600px) {
.footer {
width: 100%;
}
}
< / style >
< button class = "top-btn hidden" >
< img src = "/assets/images/elements/chevron-up.svg" alt = "Scroll to top" >
< / button >
< style >
.top-btn {
position: fixed;
bottom: 10px;
right: 10px;
z-index: 999;
border: none;
background-color: var(--clr-top-btn);
border-radius: 50em;
padding: 0.3em;
}
.top-btn:focus {
outline: 0.25em solid var(--clr-top-btn);
outline-offset: 0.15em;
}
.top-btn img {
width: 1.5rem;
aspect-ratio: 1 / 1;
}
< / style >
< script defer >
const topButton = document.querySelector(".top-btn");
window.onscroll = () => {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
topButton.classList.remove("hidden");
} else {
topButton.classList.add("hidden");
}
}
topButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
left: 0,
behavior: "smooth",
});
});
< / script >
< / body >
< / html >