Created
August 15, 2011 17:55
-
-
Save mitechie/1147318 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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&source=embed&hl=en&geocode=&q=caribou+coffee&sll=42.577608,-83.145218&sspn=0.144102,0.350189&ie=UTF8&radius=8.92&rq=1&cid=17926306267005349755&ll=42.544038,-83.119726&spn=0.037627,0.087547&iwloc=A&output=embed"> | |
</iframe> | |
<br /> | |
<small> | |
<a href="http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=caribou+coffee&sll=42.577608,-83.145218&sspn=0.144102,0.350189&ie=UTF8&radius=8.92&rq=1&cid=17926306267005349755&ll=42.544038,-83.119726&spn=0.037627,0.087547&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