我是使用 Python 的新手,在尝试从 .tpl 文档中引用我的样式表时遇到了问题。我的 python、模板和 css 文档都在同一个目录中,但是当我使用 CMD 将页面加载到“localhost:8080”时,它会显示没有应用样式的模板。
在我的模板文档 index.tpl 中,我引用了三个样式表:
<link rel="stylesheet" type="text/css" href="demo.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="animate-custom.css" />
我的python文件输出模板:index.py:
from bottle import route,template,debug,run
import sqlite3
@route('/')
def player():
return template('index.tpl')
debug(True)
run(reloader=True)