diff options
| author | Kumar Damani <damani.kumar@gmail.com> | 2019-02-19 20:29:42 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-19 20:29:42 +0000 |
| commit | 3449364d8a922faf7187c6870876a92aacde5556 (patch) | |
| tree | 86d1123889ac79e8e0a6448ed78022201c331f68 /web/views/layout.pug | |
| parent | df5d61aae6c2a94f1619496dc4d204b22e81b7ce (diff) | |
| parent | 58d54b74424e1213c1888f3c3925ab8578d092f3 (diff) | |
Merge pull request #9 from csc301-winter-2019/feat/4
Feat/4
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 |
