I am trying to load content into a template in app engine. Here is my python script (main.py)
import os
import re
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from google.appengine.ext.webapp import template
class MainPage(webapp.RequestHandler):
def get(self):
p = self.request.get("p", default_value="main.html")
template_values = {"page" : p}
path = os.path.join(os.path.dirname(__file__), 'index.html')
self.response.out.write(template.render(path, template_values))
application = webapp.WSGIApplication([('/', MainPage)],debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
The webpage has links to another webpage which is in root folder (all html files are in root folder, not in static folder). When I click the link, I am getting a 404 error. The main.html (which is given as default in main.py) is loading correctly.
When I try to load html files in static folder, they as a new page (not in the template).
Part of HTML code:
<div id="content">
<p><a href="/projects.html">projects</a></p>
<p><a href="/news.html">news</a></p>
</div>
Where did I go wrong?
EDIT: Sorry, I am a newbie to App Engine.
Here is the body of the template file.
<body>
<div id="site">
<div id="sidebar">
<p><a href="link1">Link 1</a></p>
<p><a href="link2">Link 2</a></p>
</div>
<div id="content">
{% if page %}
{% include page %}
{% else %}
{% include "main.html" %}
{% endif %}
</div>
</div>
</body>
psupposed to be coming from? You've only got one handler, mapped to a single URL -/. What's supposed to be servingprojects.htmlandnews.html? – Daniel Roseman Dec 15 '11 at 9:05