From 085538ec47cb5baa29c4214d97c6926b285ab507 Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Sun, 17 Feb 2019 21:15:36 -0700 Subject: added basic site with basic map --- web/views/layout.pug | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 web/views/layout.pug (limited to 'web/views/layout.pug') 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 -- cgit v1.2.3