Skip to content

Commit

Permalink
Use TLS where easy
Browse files Browse the repository at this point in the history
  • Loading branch information
InPermutation committed Jul 16, 2015
1 parent 7017ee4 commit 3167385
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Generic 'find-a' app for geographic datasets">
<meta name="author" content="Code for Boston">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="styles/properties.css">
</head>
Expand Down Expand Up @@ -34,9 +34,9 @@
</ul>
<form id="search" class="navbar-form dropdown" role="search">
<div class="form-group">
<input type="text" class="Address form-control" placeholder="Enter an Address..." title="Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright">
<input type="text" class="Address form-control" placeholder="Enter an Address..." title="Data © OpenStreetMap contributors, ODbL 1.0. https://www.openstreetmap.org/copyright">
</div>
<button type="submit" class="btn btn-default" title="Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright">Locate</button>
<button type="submit" class="btn btn-default" title="Data © OpenStreetMap contributors, ODbL 1.0. https://www.openstreetmap.org/copyright">Locate</button>
<div id="search-results" class="dropdown-menu">
<div class="help"></div>
<p class="suggested">Suggested results:</p>
Expand Down Expand Up @@ -69,10 +69,10 @@ <h5 data-project="contact">Please send feedback, ideas, and bug reports to our <
<hr>
<h4>About Code for Greensboro</h4>
<p>We're developers, designers, data nerds, politically-minded people with ideas for making things better, citizens, users of software—in other words, we are this community. We want to use these talents to make Greensboro's government work with the web in new and better ways.</p>
<p>Feel free to stop by one of our <a href="http://www.bit.ly/cfgrsvp" target="_blank">Weekly Hack Nights</a>, <a href="http://www.github.com/codeforgso" target="_blank">check us out on Github</a>, or simply <a href="mailto:hello@codeforgreensboro.org"> drop us a line!</a></p>
<p>Feel free to stop by one of our <a href="https://www.bit.ly/cfgrsvp" target="_blank">Bi-weekly Hack Nights</a>, <a href="https://www.github.com/codeforgso" target="_blank">check us out on Github</a>, or simply <a href="mailto:hello@codeforgreensboro.org"> drop us a line!</a></p>
<hr>
<h4>Credit Where Due</h4>
<p>Finda was originally built by <a href="http://github.com/code-for-boston">Code for Boston</a>. We stand on the shoulders of giants!</p>
<p>Finda was originally built by <a href="https://github.com/codeforboston">Code for Boston</a>. We stand on the shoulders of giants!</p>
</div>
<div class="modal-footer">
<a href="http://www.gsobuilt.co" target="_blank">
Expand Down
2 changes: 1 addition & 1 deletion src/infotemplates.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ define(function(require, exports) {
image: Handlebars.compile('<img src="{{url}}"/>'),
title: Handlebars.compile('<div><h4>{{title}}</h4><div>{{{rendered}}}</div></div>'),
list: Handlebars.compile('<ul> {{#list}} <li>{{{this}}}</li> {{/list}} </ul>'),
directions: Handlebars.compile('<a target="_blank" href="http://maps.google.com/maps?q={{directions}}">{{title}}</a>'),
directions: Handlebars.compile('<a target="_blank" href="https://maps.google.com/maps?q={{directions}}">{{title}}</a>'),
simple: Handlebars.compile('{{text}}'),
popup: Handlebars.compile('<div>{{#popup}}<div class="feature-{{klass}}">{{{rendered}}}</div>{{/popup}}</div>')
};
Expand Down

0 comments on commit 3167385

Please sign in to comment.