# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 7
# self = https://watcher.sour.is/conv/eod6ooq
@prologic does zs have the capability to have multiple layouts (eg. An index layout, another for articles that has a different side menu, different footer, etc)?
@screem as far as I'm aware, the same layout is used for _every_ page, so most likely not
@screem Yes it does. You can define the layout to use in the YAML frontmatter of each Markdown doc.
@screem Yes it does. You can define the layout to use in the YAML frontmatter of each Markdown doc.
Example:


$ head selfhosted.com.au/contact.md
---
title: Self Hosted - Contact Us
description: Contact Self Hosted today!
keywords: self, hosted, contact, form
layout: contact.html
---

...
Example:


$ head selfhosted.com.au/contact.md
---
title: Self Hosted - Contact Us
description: Contact Self Hosted today!
keywords: self, hosted, contact, form
layout: contact.html
---

...
@prologic perfect! Thanks for the clarification. That'll help out in the docs site 😁