from snek.system.view import BaseView class AboutHTMLView(BaseView): async def get(self): return await self.render_template("about.html") class AboutMDView(BaseView): async def get(self): return await self.render_template("about.md")