GAE(Google App Engine)
을 서버로 사용하고 페이지를 GAE Django API
으로 렌더링하려고합니다. 제가 사용하고 싶은 CSS
스타일은 960 Grid System
입니다. 적응 형 버전은 here입니다.Django가있는 Google App Engine이 렌더링되지 않습니다.
내 페이지는 평소와 같이 GAE에서 장고에 렌더링되는 :
class MainPage(webapp.RequestHandler):
def get(self):
featuredPic = "img/featuredPic.jpg"
values = {
'featuredPic' : featuredPic,
}
self.response.out.write(template.render('index.html', values))
application = webapp.WSGIApplication([('/', MainPage)], debug=True)
그리고 내 index.html
파일은 적응 그리드 시스템의 코드 neccassarry 포함 : 또한
<script src="/js/adapt.js"></script>
<script>
// Edit to suit your needs.
var ADAPT_CONFIG = {
// Where is your CSS?
path : '/css/',
// false = Only run once, when page first loads.
// true = Change on window resize and page tilt.
dynamic : true,
// First range entry is the minimum.
// Last range entry is the maximum.
// Separate ranges by "to" keyword.
range : [ '0px to 760px = mobile.min.css',
'760px to 980px = 720.min.css',
'980px to 1280px = 960.min.css',
'1280px to 1600px = 1200.min.css',
'1600px to 1940px = 1560.min.css',
'1940px to 2540px = 1920.min.css',
'2540px = 2520.min.css' ]
};
</script>
나는 포함 오전 css, js, img 및 기타 폴더가 app.yaml
에 있지만 아직 결과 HTML이 div에 설정된 960 Grid System 클래스를 따르지 않습니다. GAE가 JS를 사용 중지하거나 다른 실수를하고 있습니까?