fix(web): title url changes with login, redirects

This commit is contained in:
əlemi 2024-04-16 08:09:32 +02:00
parent dab4550d08
commit d1a8b1a74b
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -34,7 +34,7 @@ fn main() {
move || view! { move || view! {
<nav class="w-100"> <nav class="w-100">
<p> <p>
<code><a class="upub-title" href="/web/home" >μpub</a></code> <code><a class="upub-title" href=move || if cookie.get().present() { "/web/home" } else { "/web/server" } >μpub</a></code>
<small class="ml-1 mr-1" ><a class="clean" href="/web/server" >micro social network, federated</a></small> <small class="ml-1 mr-1" ><a class="clean" href="/web/server" >micro social network, federated</a></small>
/* TODO kinda jank with the float but whatever, will do for now */ /* TODO kinda jank with the float but whatever, will do for now */
<small style="float: right" ><a href="https://git.alemi.dev/upub.git" >src</a></small> <small style="float: right" ><a href="https://git.alemi.dev/upub.git" >src</a></small>
@ -79,6 +79,7 @@ fn main() {
<Route path="/web/objects/:id" view=ObjectPage /> <Route path="/web/objects/:id" view=ObjectPage />
<Route path="/" view=move || view! { <Redirect path="/web" /> } /> <Route path="/" view=move || view! { <Redirect path="/web" /> } />
<Route path="/web/" view=move || view! { <Redirect path="/web" /> } />
</Routes> </Routes>
</div> </div>
</div> </div>