--- title: webdog html template: docs.tera --- # webdog html webdog adds some extensions to html to make building your site easier. ## `wd-partial` any template can be used as a partial in another template or page. in a template like this: ```html

this is a partial.

the hi argument is {{ userdata.hi }}

the hello argument is {{ userdata.hello }}

and here's the inner content: {{ page | safe }}

``` simply include the `wd-partial` html tag like so: ```html hiiiiiiiiiii~ ``` a `wd-partial` tag consists of the `t` attribute to determine the template and any number of additional arguments, which are passed on to the partial template.