> For the complete documentation index, see [llms.txt](https://docs.hivepress.io/developer-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hivepress.io/developer-docs/framework/blocks/template.md).

# Template

This block type renders a [template](/developer-docs/framework/templates.md).

### Parameters

* **template** - the name of a template to render.

### Example

The code below renders the **Listings** page template.

```php
echo ( new HivePress\Blocks\Template(
	[
		'template' => 'listings_view_page',
	]
) )->render();
```
