From b8ea19ad4fd6516f14846557f5714cae7633ecaf Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Sat, 7 Dec 2024 08:57:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Corrige=20localizaci=C3=B3n=20de?= =?UTF-8?q?=20archivos=20est=C3=A1ticos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- pagetop/build.rs | 2 +- pagetop/src/lib.rs | 2 +- {static => pagetop/static}/favicon.ico | Bin {static => tools}/banner.png | Bin 5 files changed, 3 insertions(+), 3 deletions(-) rename {static => pagetop/static}/favicon.ico (100%) rename {static => tools}/banner.png (100%) diff --git a/README.md b/README.md index f8b71fc6..ee81baff 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
- +

PageTop

diff --git a/pagetop/build.rs b/pagetop/build.rs index 1450422c..85e02e02 100644 --- a/pagetop/build.rs +++ b/pagetop/build.rs @@ -1,7 +1,7 @@ use pagetop_build::StaticFilesBundle; fn main() -> std::io::Result<()> { - StaticFilesBundle::from_dir("../static", None) + StaticFilesBundle::from_dir("./static", None) .with_name("assets") .build() } diff --git a/pagetop/src/lib.rs b/pagetop/src/lib.rs index 0f1db2e0..120f1a49 100644 --- a/pagetop/src/lib.rs +++ b/pagetop/src/lib.rs @@ -1,6 +1,6 @@ //!
//! -//! +//! //! //!

PageTop

//! diff --git a/static/favicon.ico b/pagetop/static/favicon.ico similarity index 100% rename from static/favicon.ico rename to pagetop/static/favicon.ico diff --git a/static/banner.png b/tools/banner.png similarity index 100% rename from static/banner.png rename to tools/banner.png