2023-10-07 21:45:38 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2023-10-31 22:52:04 +00:00
< link rel = "stylesheet" href = "hectabitstyles.css" >
2023-10-07 21:45:38 +01:00
< title > HectaBit Homepage< / title >
< link rel = "icon" href = "/assets/img/hectabit.svg" >
< / head >
< body >
2023-10-31 22:52:04 +00:00
< div class = "closebar" >
< button id = "sidebutton" > > < / button >
< / div >
2023-10-07 23:07:56 +01:00
< div class = "sidebar" >
< img src = "/assets/img/hectabit.svg" >
< h1 > Main Website< / h1 >
< ul >
< li > < a href = "https://hectabit.org/" target = "_blank" > Home< / a > < / li >
< li > < a href = "https://hectabit.org/donate" target = "_blank" > Donate< / a > < / li >
< li > < a href = "https://hectabit.org/halloffame" target = "_blank" > Hall of fame< / a > < / li >
< / ul >
< h1 > HectaBit Software< / h1 >
< ul >
< li > < a href = "https://centrifuge.hectabit.org" target = "_blank" > Centrifuge< / a > < / li >
< li > < a href = "https://hectabit.org/evolutionos" target = "_blank" > EvolutionOS< / a > < / li >
< / ul >
< h1 > HectaBit Services< / h1 >
< ul >
< li > < a href = "https://notes.hectabit.org" target = "_blank" > Notes< / a > < / li >
2023-11-04 17:04:04 +00:00
< li > < a href = "https://matrix.to/#/#devel:hectabit.org" target = "_blank" > Matrix< / a > < / li >
< li > < a href = "https://mail.hectabit.org" target = "_blank" > Mail< / a > < / li >
2023-10-07 23:07:56 +01:00
< / ul >
2023-10-08 00:51:30 +01:00
< div class = "spacer" > < / div >
< div class = "spacer" > < / div >
< div class = "spacer" > < / div >
2023-10-07 23:07:56 +01:00
< / div >
2023-10-07 21:45:38 +01:00
< div class = "content" >
< h1 > Welcome to the Hectabit Homepage!< / h1 >
< div class = "spacer" > < / div >
2023-10-08 01:06:12 +01:00
< li > < h1 > HectaBit news< / h1 > < / li >
2023-11-04 17:04:04 +00:00
< div class = "spacer" > < / div >
2023-12-18 16:29:20 +00:00
< li > < p1 > RIP Burgernotes... In memory of burgernotes, we have forked and fixed the service into PageBurger!< / p1 > < / li >
< div class = "spacer" > < / div >
2023-11-04 17:04:04 +00:00
< li > < p1 > Matrix is back, and better than ever! We also introduced a new email service!< / p1 > < / li >
2023-11-01 00:18:43 +00:00
< div class = "spacer" > < / div >
2023-11-04 15:14:07 +00:00
< li > < p1 > We have scaled up our systems to an Intel Pentium laptop, a much needed upgrade over the Raspberry< / p1 > < a href = "/pi" target = "_blank" > Pi.< / a > < p1 > We are planning to bring matrix back soon...< / p1 > < / li >
2023-11-01 00:18:43 +00:00
< div class = "spacer" > < / div >
2023-11-01 00:27:49 +00:00
< li > < p1 > We have brought matrix down due to performance issues, it will be back up when we upscale in future.< / p1 > < / li >
2023-10-08 01:06:12 +01:00
< div class = "spacer" > < / div >
2023-11-01 00:49:51 +00:00
< li > < p1 > We are disappointed to say there was an attack on Centrifuge, on the 8th of October 2023. It was unsuccessful.< / p1 > < / li >
2023-10-08 01:06:12 +01:00
< div class = "spacer" > < / div >
< li > < p1 > We are hosting a burgernotes instance, as seen in the sidebar. Just sign up!< / p1 > < / li >
2023-10-07 21:45:38 +01:00
< div class = "spacer" > < / div >
< li > < p1 > We are now a Matrix HomeServer, including federation. Just sign up!< / p1 > < / li >
< div class = "spacer" > < / div >
< li > < p1 > Our new infrastructuring is complete: we are now 100% self reliant!< / p1 > < / li >
< div class = "spacer" > < / div >
< li > < p1 > Everything is now hosting on a Raspberry< / p1 > < a href = "/pi" target = "_blank" > Pi!< / a > < / li >
< div class = "spacer" > < / div >
2023-10-08 01:06:12 +01:00
< li > < h1 > HectaBit is a not-for-profit body hosted in the United Kingdom, 100% remotely!< / h1 > < / li >
2023-10-07 21:45:38 +01:00
< / div >
< script >
document.getElementById("sidebutton").addEventListener("click", function() {
var sidebar = document.querySelector(".sidebar");
var content = document.querySelector(".content");
2023-10-31 22:52:04 +00:00
var closebar = document.querySelector(".closebar");
closebar.classList.toggle("expanded");
2023-10-07 21:45:38 +01:00
sidebar.classList.toggle("hidden");
content.classList.toggle("expanded");
sidebar.classList.toggle("display");
});
< / script >
< / body >
< / html >