From 03d6a56b127958cdaafdbbbfd903ad8f778fb224 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 9 Dec 2021 07:54:22 -0700 Subject: [PATCH] wip --- src/app.rs | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/src/app.rs b/src/app.rs index 65a3966..2e38532 100644 --- a/src/app.rs +++ b/src/app.rs @@ -13,18 +13,26 @@ impl Component for App { } fn view(&self, _ctx: &Context) -> Html { + let topografix = move || -> Html { + html! { {"GPX files"} } + }; + + let garmin = move || -> Html { + html! {{"Garmin"}} + }; + + let strava = move || -> Html { + html! {{"Strava"}} + }; + html! { <>

- {"gpx.thermokar.st"} + { "gpx.thermokar.st" }

- {"This client-side tool is for merging "} - - {"GPX files"} - - {". "} + { "A client-side tool for merging "}{ topografix() }{ "." }

@@ -32,21 +40,14 @@ impl Component for App {

- {"Note, this has only been tested on GPX files produced by "} - - {"Garmin"} - - {" and "} - - {"Strava"} - - {" - your mileage may vary."} + { "Note, this has only been tested on GPX files produced by " } + { garmin() }{ " and " }{ strava() }{ " - your mileage may vary." }

- {"source (public access): "} - {"git://pingo.thermokar.st/gpx-web-utils"} + { "source (public access): " } + { "git://pingo.thermokar.st/gpx-web-utils" }