Skip to content

Instantly share code, notes, and snippets.

@mitechie
Created August 15, 2011 17:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitechie/1147318 to your computer and use it in GitHub Desktop.
Save mitechie/1147318 to your computer and use it in GitHub Desktop.
class DetroitHandler(BaseRequestHandler):
def get(self):
self.generate('base_page.html', {'content': """
<p>We meet every Wednesday, from 8-10 EST, at:</p>
<pre>Caribou Coffee
1413 W 14 Mile Rd
Madison Heights, MI 48071</pre>
<p>The last Wed of the month is a special longer edition that starts at 7pm.</p>
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
src="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=caribou+coffee&amp;sll=42.577608,-83.145218&amp;sspn=0.144102,0.350189&amp;ie=UTF8&amp;radius=8.92&amp;rq=1&amp;cid=17926306267005349755&amp;ll=42.544038,-83.119726&amp;spn=0.037627,0.087547&amp;iwloc=A&amp;output=embed">
</iframe>
<br />
<small>
<a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=caribou+coffee&amp;sll=42.577608,-83.145218&amp;sspn=0.144102,0.350189&amp;ie=UTF8&amp;radius=8.92&amp;rq=1&amp;cid=17926306267005349755&amp;ll=42.544038,-83.119726&amp;spn=0.037627,0.087547&amp;iwloc=A" style="text-align:left">View Larger Map</a>
</small>
"""})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment