zengarden-bits/index.html

102 lines
4.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Librebits Project</title>
<meta name="description" content="Site description">
<link rel="shortcut icon" type="image/png" href="assets/images/icon-192x192.png">
<link rel="shortcut icon" sizes="196x196" href="assets/images/icon-192x192.png">
<link rel="apple-touch-icon" href="assets/images/icon-192x192.png">
<!-- Link to the stylesheet -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="assets/fonts/fonts.css">
</head>
<body>
<header>
<h1>
<a href="#home">Librebits Project | website</a>
</h1>
<nav>
<a href="#about">About</a>
<a href="#lab">Lab</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<section id="home">
<a href="#about"><img src="assets/images/enso.png" alt="Enso" width="830" height="848" /></a>
</section>
<section id="about">
<h2>About</h2>
<p>This website consists of just two files: a single HTML file and a single CSS file. This is a based on my colleague and friend Joost's <a href="https://www.zengardenwebsites.com/#home">Zen Garden Websites.</a> The goal of this website is to show what can be done with just one simple CSS and one simple HTML file. It aims to illustrate how simple the web (WWW). Our Zen Garden style websites are easy to build, easy to maintain and cheap or even <a href="https://pages.github.com/">free to host</a>.</p>
<h2>our motto | modus operandi </h2>
<p>«Production without possession, action without ambition, development without dominance»</p>
<div>
<blockquote>
<cite>.- Lao-tzu, chinese philosopher (604 BC 531 BC)</cite>
<pre>................{)...............</pre>
<pre>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</pre>
<p>~made < with FLOSS love / > ~</p>
</blockquote>
</div>
</section>
<section id="lab">
<div class="lab">
<div>
<a href="https://git.librebits.info/explore/repos"><img src="assets/images/git.jpeg" alt="John Doe" width="300" height="190" /></a>by <a href="https://en.wikipedia.org/wiki/Phoenix_(mythology)">Fenix ;-)</a>
</div>
<div>
<a href="https://hugocodex.org"><img src="assets/images/hugo-logo.png" alt="Hugocodex" width="300" height="190" /></a>contributing to Hugocodex <a href="https://github.com/jhvanderschee/hugocodex/">project</a>
</div>
<div>
<a href="https://fediverse.tv/my-library/video-channels"><img src="assets/images/ftv.png" alt="FTV" width="300" height="190" /></a><a href="https://fediverse.tv/my-library/video-channels">contributing to FediverseTV</a>
</div>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>My name is Fenix, a People+Networks+Systems projects catalyst: feel free to contact me by sending an e-mail to <a href="mailto:fenix@librebits.info">fenix@librebits.info</a>. If you want to take your simple website to the next level, we can help you with professional hosting and a CMS (ah, we do web apps too :-)</p>
</section>
</main>
<footer>
<img src="assets/images/unalome.png" alt="Unalome" />
<span>&copy; 2024 - Librebits | inspiration: Zen Garden websites</span>
</footer>
<script type="text/javascript">
/* Add eventlistener to hash links */
var els = document.querySelectorAll('a[href^="#"]');
els.forEach(function(el) {
el.addEventListener('click',function(e) {
setActiveLink(el.getAttribute('href'))
});
});
/* Set the actice hash/class function */
function setActiveLink(hash) {
var links = document.querySelectorAll('a[href^="#"]');
links.forEach(function(link) {
link.classList.remove('active');
if(link.getAttribute('href')==hash) link.classList.add('active');
});
}
/* Make sure a hash is loaded */
if (window.location.hash == '') window.location.href = '#home';
setActiveLink(window.location.hash);
</script>
</body>
</html>