web.py的模板使用非常容易,但有時候我們需要做目錄層級以便管理。那麼如何使用目錄層級的模板呢?
通常我們使用模板的時候先聲明模板文件夾
render=web.template.render('templates')
使用templates文件夾下index.html模板
return render.index()
使用templates文件夾下list.html模板
return render.list()
以上所有的html模板文件只放在tempates目錄下,如果要在templates下建目錄並使用目錄下的模板文件只需加目錄名稱即可。
使用templates下的admin目錄裡的index.html模板
return render.admin.index()
使用templates下的admin目錄裡的login.html模板
return render.admin.login()