У меня получилась такая структура проекта:
main.py
templates/index.html
static/style/style.css
______/img/bg.jpg
Код main.py:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
app.run(debug=True)
Код index.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href='../static/style/style.css' />
</head>
<body>
</body>
</html>
Код style.css:
body {
background-image: url(../img/bg.jpg) repeat;
}
index.html файл со стилями находит, но вот style.css картинку уже не видит. Помогите, пожалуйста!