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>
link|improve this question

25% accept rate
3  
Half of the logic seems to be missing. Where's the p supposed to be coming from? You've only got one handler, mapped to a single URL - /. What's supposed to be serving projects.html and news.html? – Daniel Roseman Dec 15 '11 at 9:05
Can you please post a complete template file? However, typically you need to serve static files from either a static dir or defined as static in the yaml file. Everything else should have a handler. – Sologoub Dec 15 '11 at 17:44
Figured it out. As Daniel Roseman said, I've mapped only single URL. Got it working now. Thanks for your comment. – Vamsi Krishna Dec 15 '11 at 19:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.