130 lines
3.2 KiB
HTML
130 lines
3.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="dark light">
|
|
<link rel="icon" href="data:,">
|
|
<title>About `barf`</title>
|
|
<link href="https://barf.bt.ht/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: sans-serif;
|
|
line-height: 1.45;
|
|
margin: 0 auto;
|
|
max-width: 45rem;
|
|
padding: 0 15px;
|
|
}
|
|
hr {
|
|
background-color: grey;
|
|
border: 0;
|
|
height: 1px;
|
|
margin: 2rem 0;
|
|
}
|
|
nav {
|
|
margin: 2rem 0 0;
|
|
}
|
|
main {
|
|
hyphens: auto;
|
|
}
|
|
main p {
|
|
margin: 1rem;
|
|
}
|
|
h1,h2,h3,h4 {
|
|
margin: 2rem 0 0;
|
|
}
|
|
h1 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
h1 + p {
|
|
margin: 0 0 1rem;
|
|
}
|
|
span.created {
|
|
display: block;
|
|
margin: 4px 15px;
|
|
}
|
|
img {
|
|
border: 1px solid lightgrey;
|
|
height: auto;
|
|
max-width: 100%;
|
|
width: auto;
|
|
}
|
|
blockquote {
|
|
border: 1px solid;
|
|
border-left: 6px solid;
|
|
margin: 2rem 0;
|
|
padding: 10px;
|
|
}
|
|
blockquote p {
|
|
margin: 0;
|
|
}
|
|
figure {
|
|
margin: 2rem 0;
|
|
}
|
|
figcaption {
|
|
color: slategrey;
|
|
}
|
|
code {
|
|
border: 1px solid;
|
|
padding: 0.1rem 0.3rem;
|
|
tab-size: 4;
|
|
}
|
|
pre {
|
|
border: 1px solid;
|
|
}
|
|
pre code {
|
|
border: 0;
|
|
display: block;
|
|
overflow-x: auto;
|
|
padding: 0.3rem 0.6rem;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
margin: 2rem 0;
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
tr {
|
|
border-bottom: 1px solid lightgrey;
|
|
}
|
|
tr:nth-of-type(odd) td {
|
|
background-color: #f8f8f8;
|
|
}
|
|
th,td {
|
|
padding: 6px;
|
|
}
|
|
footer {
|
|
border-top: 1px dashed grey;
|
|
margin: 2rem 0;
|
|
padding: 1rem 15px;
|
|
}
|
|
@supports (color-scheme: dark light) {
|
|
@media screen and (prefers-color-scheme: dark) {
|
|
a:link {color: #9e9eff;}
|
|
a:visited {color: #d0adf0;}
|
|
a:active {color: red;}
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<nav>
|
|
<a href="/">Home</a><span> | </span><a href="/about">About</a><span> | </span><a href="/websites">Websites</a><span> | </span><a href="https://git.sr.ht/~bt/barf">Source Code</a>
|
|
</nav>
|
|
|
|
<main>
|
|
<h1>About <code>barf</code></h1>
|
|
<p>barf is a minimal and suckless-inspired blog generator. It is a tweaked and slightly patched version of Karl Bartel's fantastic <a href="https://github.com/karlb/karl.berlin">blog.sh</a>.</p>
|
|
<h2>Why?</h2>
|
|
<p>This project was created by me, <a href="https://bt.ht">Bradley Taunt</a>, out of frustration with overly complex and bloated blogging options. I tried <em>so many</em> "minimal" generators but each one ended up having some glaring issue or heavy reliance on dependencies. </p>
|
|
<p>I wanted to have a system that I could easily replicate on any Linux machine. Something that didn't require me to download half the internet just to get up and running. I'm a sucker for keeping things simple.</p>
|
|
<footer role="contentinfo">
|
|
<span><a href="#">↑ Back to Top</a></span><br><br>
|
|
<small>
|
|
Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
|
|
The <a href="https://git.sr.ht/~bt/barf">code for this site</a> is <a href="https://git.sr.ht/~bt/barf/tree/master/item/LICENSE">MIT</a>.
|
|
</small>
|
|
</footer> |