diff options
| author | AndrewMihai <41450954+AndrewMihai@users.noreply.github.com> | 2019-02-21 23:55:35 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-21 23:55:35 +0000 |
| commit | 0a83e2a2a42e168d18c66888bba3d3bebbbc3d29 (patch) | |
| tree | 7754c0837ae23952984bd5f9339bab4be270c51f /web/views/layout.pug | |
| parent | e29d2e6c05f9fb2e6b630fed48904943625ad358 (diff) | |
| parent | 4b588e647dedbb49f54f9dd390b96f8466321ece (diff) | |
Merge pull request #12 from csc301-winter-2019/master
Merging new commits from master into feat/5 branch
Diffstat (limited to 'web/views/layout.pug')
| -rw-r--r-- | web/views/layout.pug | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/views/layout.pug b/web/views/layout.pug new file mode 100644 index 0000000..f46138c --- /dev/null +++ b/web/views/layout.pug @@ -0,0 +1,12 @@ +doctype html +html + head + title= title + link(rel='stylesheet', href='https://unpkg.com/leaflet@1.0.3/dist/leaflet.css') + link(rel='stylesheet', href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css') + link(rel='stylesheet', href='/stylesheets/style.css') + script(src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js') + script(src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js') + script(src='https://unpkg.com/leaflet@1.0.3/dist/leaflet.js') + body + block content |
