There was an error while loading. Please reload this page.
This is a guide on how to create a new page on the KhanLatest platform:
Create a page template eg. new_page.html
<!-- new_page.html --> <html> <head> <title>A new Page!</title> </head> <body> <h1>You made a new page...</h1> {{ some_value }} </body> </html>
create a page module eg. new_page.py
import page_page.py into main.py
pass the new_page.ViewNewpage to a url like so: app = webapp2.WSGIApplication([('/new_page', new_page.ViewNewpage])