]>
Commit | Line | Data |
---|---|---|
1 | {% extends "bootstrap/base.html" %} | |
2 | {% import "bootstrap/wtf.html" as wtf %} | |
3 | ||
4 | {% block styles %} | |
5 | {{ super() }} | |
6 | <link rel="icon" href="{{url_for('static', filename='favicon.ico')}}" type="image/x-icon" /> | |
7 | <link rel="stylesheet" href="{{url_for('static', filename='css/font-awesome.min.css')}}"> | |
8 | <link rel="stylesheet" href="{{url_for('static', filename='css/justifiedGallery.min.css')}}"> | |
9 | <link rel="stylesheet" href="{{url_for('static', filename='css/custom.css')}}"> | |
10 | <script type="text/javascript" src="{{ url_for('static', filename='js/jquery-3.3.1.min.js') }}"></script> | |
11 | <script type="text/javascript" src="{{ url_for('static', filename='js/jquery.justifiedGallery.min.js') }}"></script> | |
12 | {% endblock %} | |
13 | ||
14 | {% block content %} | |
15 | {% endblock %} |