-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
37,253 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
'use strict'; | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Browser-sync config file | ||
|-------------------------------------------------------------------------- | ||
| | ||
| For up-to-date information about the options: | ||
| http://www.browsersync.io/docs/options/ | ||
| | ||
| There are more options than you see here, these are just the ones that are | ||
| set internally. See the website for more info. | ||
| | ||
| | ||
*/ | ||
module.exports = { | ||
'files': [ | ||
'**/*.html', | ||
'**/*.js', | ||
'**/*.css', | ||
'images/**/*' | ||
], | ||
'watchOptions': { | ||
'ignoreInitial': true | ||
}, | ||
'server': { | ||
'baseDir': '.', | ||
}, | ||
'port': 9000, | ||
'open': 'local', | ||
'browser': 'google-chrome', | ||
'reloadOnRestart': false, | ||
'notify': false | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<!-- Leaflet --> | ||
<link rel="stylesheet" href="lib/leaflet-0.7/leaflet.css" /> | ||
<script src="lib/leaflet-0.7/leaflet.js"></script> | ||
|
||
<!-- jQuery --> | ||
<script src="lib/jquery-3.1/jquery-3.1.0.min.js"></script> | ||
|
||
<!-- Map --> | ||
<style> | ||
body, html { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.map { | ||
height: 100%; | ||
} | ||
</style> | ||
<script src="map.js"></script> | ||
</head> | ||
|
||
<body> | ||
|
||
<!-- Here's the container where the map will be rendered to --> | ||
<div id="map" class="map"></div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, | ||
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, | ||
comprehensive icon sets or copy and paste your own. | ||
|
||
Please. Check it out. | ||
|
||
-Dave Gandy |
Oops, something went wrong.