this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

inline html

+22 -21
-1
client/app.css
··· 1 1 @import "tailwindcss"; 2 2 @source "./src/**/*.gleam"; 3 - @source "./index.html"; 4 3 5 4 @font-face { 6 5 font-family: "Josefin Sans";
-19
client/index.html
··· 1 - <!doctype html> 2 - <html lang="en"> 3 - <head> 4 - <meta charset="UTF-8" /> 5 - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 - 7 - <title>Lumina</title> 8 - 9 - <link 10 - rel="stylesheet" 11 - href="/static/lumina.css" 12 - /> 13 - <script type="module" src="/static/lumina.min.mjs"></script> 14 - </head> 15 - 16 - <body> 17 - <div id="app"></div> 18 - </body> 19 - </html>
+22 -1
server/src/staticroutes.rs
··· 8 8 9 9 #[get("/")] 10 10 pub(crate) async fn index() -> RawHtml<String> { 11 - RawHtml(include_str!("../../client/index.html").to_string()) 11 + RawHtml( 12 + r#"<!doctype html> 13 + <html lang="en"> 14 + <head> 15 + <meta charset="UTF-8" /> 16 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 17 + 18 + <title>Lumina</title> 19 + 20 + <link 21 + rel="stylesheet" 22 + href="/static/lumina.css" 23 + /> 24 + <script type="module" src="/static/lumina.min.mjs"></script> 25 + </head> 26 + 27 + <body> 28 + <div id="app"></div> 29 + </body> 30 + </html>"# 31 + .to_string(), 32 + ) 12 33 } 13 34 14 35 #[get("/static/lumina.min.mjs")]