Commit 8a71e8d046197669caa05474442bdaf22ef5b4b2
- Diff rendering mode:
- inline
- side by side
mouchak/templates/base.html
(0 / 1)
  | |||
16 | 16 | <link rel="stylesheet" href="{{url_for('static', filename='css/normalize.css')}}"> | |
17 | 17 | <link rel="stylesheet" href="{{url_for('static', filename='css/bootstrap.min.css')}}" media="screen"> | |
18 | 18 | <link rel="stylesheet" href="{{url_for('static', filename='css/mouchak.css')}}"> | |
19 | <link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}"> | ||
20 | 19 | <script src="{{url_for('static', filename='js/lib/modernizr-2.6.2.min.js')}}"></script> | |
21 | 20 | ||
22 | 21 | <!--TODO: make this optional, only when there is a map plugin in the site. There |
mouchak/templates/index.html
(1 / 0)
  | |||
1 | 1 | {% extends "base.html" %} | |
2 | 2 | ||
3 | 3 | {% block head %} | |
4 | <link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}"> | ||
4 | 5 | <title> {{ title }} </title> | |
5 | 6 | {% endblock %} | |
6 | 7 |