rdxl_static

Utility Crate to Compile Static Sites based on RDXL macros

```rust

[dot_template]

pub fn custom_template(title: String, description: String, xhtml: String) -> String { xhtml!( {{ title }} {{ xhtml }} ) }

[dot]

fn thisfunctionisawebpage() -> String { dot_html!(

This webpage uses the default HTML Template.

) }

[dot]

fn thisfunctionisalsoawebpage() -> String { dothtml!( template=custom_template, title="Hello World", description="Classic Cinematic Drama Movie Reviews",

This year was not a good year for Cinema.

) } ```

There is a template for starting new sites with rdxl_static.