web2py 添加主题森林主题

web2py adding themeforest theme

如何在web2py中添加自定义主题。示例:在 themeforest.net 中,其中一个主题的文件夹结构如下:

将主题林 CSS、javascript 和图像文件上传到 web2py 中的 Static 文件夹。

Views 中创建 html 文件,然后 link 到您创建的 html 中的那些 CSS、javascript 和图像文件在 Views.

Views 的 html 文件中,你应该删除这个:

{{extend 'layout.html'}}
<h1>This is the default/sample.html template</h1>
{{=BEAUTIFY(response._vars)}}

并从您的主题林 html 文件中复制您的 html 代码,因为您没有使用默认的 web2py layout.html

这就是您可以 link 到您从 web2py Views 上传到 Static 文件夹的 css 文件(或 js 文件)的方法 html:

<link rel="stylesheet" type="text/css" media="screen" href="{{=URL('static', 'css/style.css')}}">