Installation | Usage | Components and data
---html\_gen is a tool to generate static pages, using components and data written in json files ## Installation You will need [cargo](https://github.com/rust-lang/cargo) installed ```zsh > git clone https://github.com/dcxo/html_gen > cd html_gen > cargo install --path . ``` you can simply do: ```zsh > cargo install html_gen ``` ## Usage 1. Create a html_gen project ```zsh > html_gen create [name] # If you don't write a name, html_gen will ask you ``` 2. Then write some content in the `index.html` file, add some componets and some data (more on this later), and finally build the project with: ```zsh > html_gen build ``` 3. Your static page will be avaliable on the `dist` folder ## Components To create a component, you have to create a html file in the `components` folder. The content of that file can be: ```html