2014-11-17 10:44:55 +00:00
<!DOCTYPE html>
2014-11-17 15:49:06 +00:00
< html lang = "en" >
< head >
<!-- Meta -->
< meta charset = "utf-8" >
2014-11-18 09:10:18 +00:00
< title > These3Words< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, user-scalable=no" >
< meta name = "application-name" content = "These3Words" >
< meta name = "author" content = "Tim Head" >
< meta name = "author" content = "Kevin Dungs" >
< meta name = "description" content = "Unique, easy-to-remember names for locations in the world." >
< meta name = "mobile-web-app-capable" content = "yes" >
< meta name = "apple-mobile-web-app-capable" content = "yes" >
<!-- OpenGraph -->
< meta property = "og:title" content = "These3Words" >
< meta property = "og:type" content = "app.map" >
< meta property = "og:description" content = "Unique, easy-to-remember names for locations in the world." >
< meta property = "og:image" content = "" >
2014-11-17 15:49:06 +00:00
<!-- Style -->
2014-11-18 09:10:18 +00:00
< link rel = "stylesheet" href = "//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" >
< link rel = "stylesheet" href = "/static/css/style.css" >
2014-11-17 15:49:06 +00:00
< / head >
< body >
2014-11-18 09:10:18 +00:00
< script src = "https://maps.googleapis.com/maps/api/js" > < / script >
< script src = "/static/js/app.js" > < / script >
< script >
(function() {
'use strict';
var map = new These3Words.Map({{lat}}, {{lng}}, '{{threewords}}');
//google.maps.event.addDomListener(window, 'load', map.init);
map.init();
}());
2014-11-17 15:49:06 +00:00
< / script >
2014-11-18 09:10:18 +00:00
< noscript >
< div class = "panel panel-danger" >
< div class = "panel-heading" > Missing Javascript Support< / div >
< div class = "panel-body" >
Your browser does not seem to support Javascript. Unfortunately this app relies heavily on said technology and can't be used without it. Please upgrade to a more modern browser or activate Javascript in case you disabled it.
< / div >
< / div >
< / noscript >
< / body >
2014-11-17 10:44:55 +00:00
< / html >