## Overview
Enable users to supply a custom template file for more advanced publication layouts.
## Use Case
Some publishers may want a non-standard home page that pulls in multiple streams of posts.
### Users
#fight_back_news
## Dependencies
Need T810, so templates can stay simple and focused on showing content, rather than showing content //and// managing posts.
## Implementation
Provide a web-based editor for users to create templates in. They'll define the body of the landing page:
```
{{define "content"}}
<div id="featured">
{{featuredPost}}
</div>
<div id="content">
{{latestPosts}}
</div>
<div class="tagged">
{{taggedPosts "category-here"}}
</div>
{{end}}
```
`latestPosts` and `taggedPosts` would be the names of functions included in the final template, which make the corresponding queries (TODO: add task for this)