Add site_html
parent
89e231c73c
commit
87cedfda9d
|
@ -0,0 +1,55 @@
|
|||
body {
|
||||
background-image: url("https://tilde.town/~desvox/bg.png");
|
||||
background-color: #000;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
.plate {
|
||||
background: rgba(10, 10, 15, 0.70);
|
||||
max-width: 1200px;
|
||||
border: 5px solid rgba(160, 0, 87, 0.28);
|
||||
border-radius: 10px;
|
||||
color: #ccc;
|
||||
margin: 5%;
|
||||
margin-top: 2%;
|
||||
padding: 3%;
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
a,
|
||||
a:visited,
|
||||
a:active {
|
||||
text-decoration: none;
|
||||
color: rgb(60,175,236);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: rgb(217,11,100);
|
||||
}
|
||||
|
||||
.headlinks {
|
||||
color: #AAA;
|
||||
font-size: 225%;
|
||||
font-family: 'Share Tech Mono', monospace
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-family: 'Ubuntu Mono', monospace;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: 'Ubuntu Mono', monospace;
|
||||
margin: 5%;
|
||||
/* margin-bottom: 1%; */
|
||||
font-size: 125%;
|
||||
line-height: 125%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.screenshot {
|
||||
border: 2px solid rgba(150, 100, 100, 0.65);
|
||||
border-radius: 4px;
|
||||
max-width: 75%
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
<!doctype HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>BBJ: Bulletin Butter & Jelly</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono|Ubuntu+Mono" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="/base_style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<center>
|
||||
<br><br>
|
||||
<img src="/title.png" />
|
||||
<br>
|
||||
<span class="headlinks">
|
||||
A Bulletin Board for Small Communities
|
||||
<br>
|
||||
[<a href="https://github.com/desvox/bbj">GitHub</a>
|
||||
&
|
||||
<a href="/api/index.html">API Documentation</a>]
|
||||
</span>
|
||||
<div class="plate">
|
||||
<h2>
|
||||
Bulletin Butter & Jelly is a client/server textboard, tailored for use on
|
||||
the UNIX command line. It has a simple API, allows anonymous participation,
|
||||
and Markdown-esque text formatting.
|
||||
</h2>
|
||||
<p>
|
||||
BBJ is heavily inspired by image boards like 4chan, but it offers a simple
|
||||
account system to allow users to identify themselves and set profile
|
||||
attributes like a more traditional forum. Registration is optional and there
|
||||
are only minimal restrictions on anonymous participation.
|
||||
</p>
|
||||
<img class="screenshot" src="/screenshot.png">
|
||||
<p>
|
||||
Being a command-line-oriented text board, BBJ has no avatars or file sharing
|
||||
capabilties, so its easier to administrate and can't be used to distribute illegal
|
||||
content like imageboards. It has very few dependancies and is easy to set up.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</center>
|
||||
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
After Width: | Height: | Size: 224 KiB |
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
Loading…
Reference in New Issue