Compare commits

...

3 Commits

5 changed files with 21 additions and 8 deletions

2
Cargo.lock generated
View File

@ -386,7 +386,7 @@ dependencies = [
[[package]]
name = "bunbun"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"actix-rt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "bunbun"
version = "0.6.1"
version = "0.6.2"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
description = "Re-implementation of bunny1 in Rust"

View File

@ -121,6 +121,9 @@ fn compile_templates() -> Handlebars {
handlebars
.register_partial("bunbun_version", env!("CARGO_PKG_VERSION"))
.unwrap();
handlebars
.register_partial("bunbun_src", env!("CARGO_PKG_REPOSITORY"))
.unwrap();
macro_rules! register_template {
[ $( $template:expr ),* ] => {
$(

View File

@ -1,5 +1,4 @@
use crate::{template_args, BunBunError, Route, State};
use actix_web::http::header::ContentType;
use actix_web::web::{Data, Query};
use actix_web::{get, http::header};
use actix_web::{HttpRequest, HttpResponse, Responder};

View File

@ -7,6 +7,8 @@
<style type="text/css">
body {
display: flex;
margin: 0;
min-height: 100vh;
flex-direction: column;
align-items: center;
background-color: #212121;
@ -14,11 +16,18 @@
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1, p { margin: 0; }
h1 { margin-top: 1rem; }
main { display: flex; }
a { color: white; }
footer {
margin-top: 1rem;
color: #444;
display: flex;
justify-self: end;
justify-content: space-between;
}
.spacer { flex-grow: 1; }
footer p, footer p a {
margin: 1rem 0.5rem;
color: #555;
}
</style>
<link rel="search"
@ -28,7 +37,7 @@
</head>
<body>
<h1>Bunbun</h1>
<p>Thanks for installing bunbun! To setup bunbun for your web browser, follow these steps:</p>
<p>Welcome to bunbun! To setup bunbun for your web browser, follow these steps:</p>
<main>
<section>
<h2>Firefox</h2>
@ -53,9 +62,11 @@
</ol>
</section>
</main>
<p>To view a full list of commands, check out the <a href="/ls">command list</a>.</p>
<p>To view a full list of commands currently available on this instance, check out the <a href="/ls">command list</a>.</p>
</body>
<div class="spacer"></div>
<footer>
<p>{{> bunbun_version}}</p>
<p>{{> bunbun_version }}</p>
<p><a href="{{> bunbun_src }}">Source Code</a></p>
</footer>
</html>