diff --git a/README.md b/README.md index 0d343ff..b9a71d0 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ Here are some ideas to get you started: To contribute, fork the repository, make your changes and the submit a pull request. -Note: If you update the UI, please make sure to recompile the CSS with `tailwindcss -mo src/index.css`. You need to have the Tailwind CSS CLI installed ([instructions here](https://tailwindcss.com/docs/installation)) +Note: If you update the UI, please make sure to recompile the CSS with `tailwindcss -mo src/static/index.css`. You need to have the Tailwind CSS CLI installed ([instructions here](https://tailwindcss.com/docs/installation)) ## Support diff --git a/src/server.rs b/src/server.rs index 7ccea88..77f97d8 100644 --- a/src/server.rs +++ b/src/server.rs @@ -18,7 +18,6 @@ const FAVICON_SVG: &[u8] = include_bytes!("static/favicon.svg"); const APPLE_TOUCH_ICON: &[u8] = include_bytes!("static/apple-touch-icon.png"); pub async fn serve(port: &u16, updates: &[(String, Option)]) -> std::io::Result<()> { - println!("Serving on http://0.0.0.0:{}", port); App::new() .with_state(updates.to_owned()) .at("/", get(handler_service(home))) diff --git a/src/static/template.liquid b/src/static/template.liquid index 5de3116..1022f51 100644 --- a/src/static/template.liquid +++ b/src/static/template.liquid @@ -5,6 +5,7 @@ + diff --git a/tailwind.config.js b/tailwind.config.js index 862fd3a..dcd0d7f 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,7 @@ /** @type {import('tailwindcss').Config} */ module.exports = { content: [ - "src/template.liquid" + "src/static/template.liquid" ], theme: { extend: {},