diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 7127922..8514b29 100644 --- a/src/main.rs +++ b/src/main.rs @@ -478,7 +478,6 @@ fn action_links<C: Controller>( ) -> String { let mut out = String::new(); - out.push_str("<div class=actions>"); out.push_str("<a href=. title='list parent directory'>ls</a>"); out.push_str(&render_link("view", "view", active_action)); if controller.may_write_path(ctx, parts) { @@ -490,7 +489,6 @@ fn action_links<C: Controller>( out.push_str(&render_link("move", "mv", active_action)); out.push_str(&render_link("remove", "rm", active_action)); } - out.push_str("</div>"); out } |