Commit 1b635a08980d204404a4813fe8789d6a361dbb46

Authored by Antoine Goutenoir
1 parent f80ff370
Exists in master

Cheat and move CSS assets to keep the relative links working.

URGH. >.<
flaskr/assets.py
... ... @@ -3,7 +3,7 @@ from flask_assets import Bundle
3 3 common_css = Bundle(
4 4 'css/vendor/bootstrap.min.css',
5 5 'css/vendor/helper.css',
6   - 'css/main.css',
  6 + 'css/common/main.css',
7 7 filters='cssmin',
8 8 output='public/css/common.css'
9 9 )
... ...
flaskr/static/css/main.css renamed to flaskr/static/css/common/main.css
... ... @@ -39,7 +39,7 @@ div.jumbotron {
39 39 z-index: -1;
40 40 width: 100%;
41 41 height: 22.2rem;
42   - background-image: url('../public/img/plane-with-chemtrails.jpg');
  42 + background-image: url('../../public/img/plane-with-chemtrails.jpg');
43 43 background-size: cover;
44 44 background-repeat: no-repeat;
45 45 }
... ...