From 938ba26bb992a0cef867418a3a951499499c1387 Mon Sep 17 00:00:00 2001 From: cybrejon Date: Thu, 22 Feb 2024 00:21:33 +0800 Subject: [PATCH] chore: remove blank lines between svg literals to conform with proper Rust formatting --- src/templates/views/about.rs | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/templates/views/about.rs b/src/templates/views/about.rs index d297a63..e46b200 100644 --- a/src/templates/views/about.rs +++ b/src/templates/views/about.rs @@ -15,6 +15,40 @@ use crate::templates::partials::{footer::footer, header::header}; /// /// It returns the compiled html markup code as a result. pub fn about(colorscheme: &str, theme: &str, animation: &Option) -> Markup { + let logo_svg = r#" + + + + + + + + "#; + + let feature_lightning = r#" + + "#; + + let feature_secure = r#" + + "#; + + let feature_clean = r#" + + "#; + + let feature_privacy = r#" + + "#; + + let feature_foss = r#" + + "#; + + let feature_customizable = r#" + + "#; + html!( (header(colorscheme, theme, animation)) main class="about-container"{