diff --git a/helpers/pagetop-build/src/lib.rs b/helpers/pagetop-build/src/lib.rs index 98c8ef8..3816c65 100644 --- a/helpers/pagetop-build/src/lib.rs +++ b/helpers/pagetop-build/src/lib.rs @@ -115,6 +115,10 @@ //! include_files!(GUIDES => guides); //! ``` +#![doc( + html_favicon_url = "https://git.cillero.es/manuelcillero/pagetop/raw/branch/main/static/favicon.ico" +)] + use grass::{from_path, Options, OutputStyle}; use static_files::{resource_dir, ResourceDir}; diff --git a/helpers/pagetop-macros/src/lib.rs b/helpers/pagetop-macros/src/lib.rs index 25105c2..62b6e88 100644 --- a/helpers/pagetop-macros/src/lib.rs +++ b/helpers/pagetop-macros/src/lib.rs @@ -14,6 +14,10 @@ //! web clásica para crear soluciones web SSR (*renderizadas en el servidor*) modulares, extensibles //! y configurables, basadas en HTML, CSS y JavaScript. +#![doc( + html_favicon_url = "https://git.cillero.es/manuelcillero/pagetop/raw/branch/main/static/favicon.ico" +)] + mod maud; mod smart_default; diff --git a/src/lib.rs b/src/lib.rs index 04a9939..0fd3250 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,6 +30,10 @@ #![cfg_attr(docsrs, feature(doc_cfg))] +#![doc( + html_favicon_url = "https://git.cillero.es/manuelcillero/pagetop/raw/branch/main/static/favicon.ico" +)] + use std::collections::HashMap; use std::ops::Deref; diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..95e1aff Binary files /dev/null and b/static/favicon.ico differ