14 lines
264 B
Python
Raw Normal View History

2025-01-24 14:00:10 +01:00
from snek.system.view import BaseView
class AboutHTMLView(BaseView):
async def get(self):
return await self.render_template("about.html")
2025-01-24 23:35:44 +01:00
2025-01-24 14:00:10 +01:00
class AboutMDView(BaseView):
async def get(self):
2025-01-24 23:35:44 +01:00
return await self.render_template("about.md")