"""
This is a simple app setup script created with `render-engine init`
"""

from render_engine import Site, Page, Collection

app = Site()
app.output_path = "output"
app.static_path = "static"

@app.page
class Index(Page):
    template = "index.html"

@app.collection
class Pages(Collection):
    content_path = "pages" # path to content files

if __name__ == "__main__":
    app.render()
