aboutsummaryrefslogtreecommitdiffstats
path: root/src/renderer.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/renderer.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/renderer.rs b/src/renderer.rs
index 3f67695..7846388 100644
--- a/src/renderer.rs
+++ b/src/renderer.rs
@@ -270,7 +270,10 @@ fn breadcrumbs_to_path_string(breadcrumbs: &[Breadcrumb]) -> String {
fn version_footer() -> Markup {
html! {
div.version {
- (format!("{}/{}", crate_name!(), crate_version!()))
+ a href="https://github.com/svenstaro/miniserve" {
+ (crate_name!())
+ }
+ (format!("/{}", crate_version!()))
}
}
}