我正在尝试创建一个GAE(Google App Engine)
用作服务器的网站,并使用GAE Django API
. CSS
我想使用的样式是 ,特别是在此处960 Grid System
找到的自适应版本。
我的页面像往常一样在 GAE 中使用 Django 呈现:
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 网格系统类。GAE 是禁用 JS 还是我犯了其他错误?