#![feature(proc_macro_hygiene)] use std::fs::File; use std::io::prelude::*; use rdxl::xhtml; use rdxl_scaffolding::dom::*; use rdxl_scaffolding::form::*; use rdxl_scaffolding::graph::*; use rdxl_scaffolding::bootstrap::*; fn main() -> std::io::Result<()> { let mut f = File::create("docs/index.html")?; f.write_all(xhtml!( rdxl html scaffolding

Rdxl Templating Examples

Inline Container Elements

Table: A B C 1 3 2 Q W E

List: AB CD EF GH

Flexible Container Elements

Card:
Carousel:

The Stanford Bunny is cute!

ICANN Headquarters

ICANN is a large organization

Input Elements

Checkbox:

Button Group:

Text Input:

Email Input:

Search Input:

Password Input:

Number Input:

Telephone Input:

Url Input:

Range Input:

Color Input:

Date Input:

Datetime Input:

Month Input:

Week Input:

Time Input:

File Input:

Image Input:

Radio Input:

Submit Input:

Contextual Elements

Alerts:

Graph Elements

Bar Graph:

Histogram:

).as_bytes())?; Ok(()) }