diff options
author | Ben Burwell <ben@benburwell.com> | 2019-07-28 18:34:21 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-07-28 18:34:30 -0400 |
commit | 28ee93d735879dbf07c9a3549712f35bd8832da9 (patch) | |
tree | 0919e8e9f136383c5b114378749c66ba6b7d1f08 /templates/base.html | |
parent | 917b41d80c8ade7e35b71d23281d2e4209a5a1b2 (diff) |
Typeahead and search
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index 588ecc4..a27a8c6 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,10 +4,14 @@ {% block head %} <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="{{ url_for('static', filename='ihatecss.css') }}"> + <link rel="stylesheet" href="{{ url_for('static', filename='jquery-ui.min.css') }}"> <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico')}}" type="image/x-icon"> <link rel="icon" href="{{ url_for('static', filename='favicon.ico')}}" type="image/x-icon"> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-144659956-1"></script> + <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> + <script src="{{ url_for('static', filename='typeahead.bundle.min.js') }}"></script> + <script src="{{ url_for('static', filename='jquery-ui.min.js') }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} |