Hi
25 | {% endmacro %} 26 | ``` 27 | 28 | Now, you can refer to that macro anywhere(below its declaration) with: 29 | ```{{ name_of_macro() }}``` 30 | 31 | Each time you call it, the code inside of it replaces it. 32 | ``` 33 |Test
>Test
34 | {{ name_of_macro() }} >Hi
35 |Again test
>Again test
36 | {{ name_of_macro() }} >Hi
37 |Finish
>Finish
38 | ``` 39 | 40 | ## Recreate the the whole template in html with the help of bootstrap. 41 | Here is a basic example of HTML code with bootstrap: 42 | ``` 43 |