i have a problem to use image with static folder path in my page. this is 
my app.yaml

application: something
version: 1
runtime: python27
api_version: 1
threadsafe: yes


handlers:
- url: /images
  static_dir: static/images


- url: /favicon.ico
  static_files: static/favicon.ico
  upload: static/favicon.ico


- url: .*
  script: main.app


libraries:
- name: webapp2
  version: "2.5.2"
- name: jinja2
  version: latest

I have templates, static/images, controllers (has MainHandler.py) folders 
and in my root i have main.py and app.yaml files. in my templeate folder i 
have index.html file that contain:

<div>
    <img src="images/fig1.jpg">
</div>

my problem is when page was loaded i cant see my fig1.jpg picture.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.

Reply via email to