Skip to content

Instantly share code, notes, and snippets.

@mapmeld
Created May 3, 2012 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mapmeld/2582584 to your computer and use it in GitHub Desktop.
Save mapmeld/2582584 to your computer and use it in GitHub Desktop.
OpenBlock with Esri Map
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">@media print { .gmnoprint { display:none }}@media screen { .gmnoscreen { display:none }}</style>
<title>Bibb County | OpenBlock Test</title>
<meta name="robots" content="noarchive">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=7,IE=9" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<link rel="home" title="Home" href="http://demo.openblockproject.org/">
<link rel="stylesheet" type="text/css" href="OpenBlockTest_files/style-reset.css">
<link rel="stylesheet" type="text/css" href="OpenBlockTest_files/chosen.css">
<link rel="stylesheet" type="text/css" href="OpenBlockTest_files/openblock.css">
<link rel="stylesheet" type="text/css" href="OpenBlockTest_files/calendrical.css">
<script src="OpenBlockTest_files/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="OpenBlockTest_files/jquery-ui-1.8.17.custom.css">
<script type="text/javascript">
// Not using jquery.noConflict() because ironically it causes a conflict
// with OpenLayers and we end up with the $ function from OpenLayers.
// But a lot of existing everyblock code expects $j instead of $
var $j = $;
</script>
<script src="OpenBlockTest_files/ob-jquery-csrf.js" type="text/javascript" charset="utf-8"></script>
<script src="OpenBlockTest_files/chosen.jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="OpenBlockTest_files/jquery.calendrical.js"></script>
<script src="OpenBlockTest_files/json2.js"></script>
<script src="OpenBlockTest_files/jquery-ui-1.8.17.custom.min.js" type="text/javascript" charset="utf-8"></script>
<!-- begin block extrahead -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://demo.openblockproject.org/rss/locations/neighborhoods/back-bay/">
<meta name="description" content="Recent news in Macon.">
<script type="text/javascript" src="http://www.panoramio.com/wapi/wapi.js?v=1"></script>
<script type="text/javascript" charset="utf-8">
var pid = 'l:32';
window.onload = function() {
$j(".chzn-select").chosen({no_results_text: "No results matched"});
$j('#sectionfilterbutton').click(function() {
var url = $j('#sectionfilter').val();
if (url) { window.location = url; }
return false;
});
}
</script>
<script type="text/javascript">var djConfig = {parseOnLoad: true};</script>
<script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.8"></script>
<style type="text/css">
#detailmap_infowindow div .window{
display: none;
}
</style>
<script type="text/javascript">
dojo.require("dijit.layout.ContentPane");
dojo.require("esri.map");
dojo.require("esri.layers.agstiled");
dojo.require("esri.layers.osm");
dojo.require("esri.layers.KMLLayer");
dojo.require("esri.layers.graphics");
var map, incidentsGraphicsLayer;
function init() {
var initExtent = new esri.geometry.Extent({"xmin":-83.647209,"ymin":32.82443,"xmax":-83.63927,"ymax":32.829055,"spatialReference":{"wkid":4326}});
map = new esri.Map("detailmap",{
extent: esri.geometry.geographicToWebMercator(initExtent),
minZoom: 10
//isZoomSlider: false
});
/*setTimeout(function(){
map.hideZoomSlider();
}, 500);*/
//Add the topographic layer to the map. View the ArcGIS Online site for services http://arcgisonline/home/search.html?t=content&f=typekeywords:service
var basemap = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer");
map.addLayer(basemap);
//Add Bibb County GIS
var bibb = new esri.layers.ArcGISTiledMapServiceLayer("http://gis.co.bibb.ga.us/ArcGISBibb/rest/services/AG4LG/ParcelPublicAccess/MapServer");
map.addLayer(bibb);
//Add MGRC economic zones
/* var econ = new esri.layers.OpenStreetMapLayer({
tileServers: [ "http://a.tiles.mapbox.com/v3/mapmeld.MaconEcon" ]
});
map.addLayer(econ); */
var ur = new esri.layers.KMLLayer("http://pdfmongotest.herokuapp.com/macon_urban_redev.kml");
map.addLayer(ur);
dojo.connect(ur,'onLoad', function(ur) {
var ur_layers = ur.getLayers();
dojo.forEach(ur_layers, function(lyr) {
if(lyr.graphics && lyr.graphics.length > 0){
dojo.forEach(lyr.graphics, function(graphic) {
var zoneSymbol = new esri.symbol.SimpleFillSymbol( esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([230,0,230,0.25]), 2),new dojo.Color([180,0,180,0.1]));
graphic.setSymbol( zoneSymbol );
//console.log(graphic);
//myLayer.addGraphic( graphic );
});
}
});
});
var oz = new esri.layers.KMLLayer("http://pdfmongotest.herokuapp.com/macon_opp_zone.kml");
map.addLayer(oz);
dojo.connect(oz,'onLoad', function(oz) {
var oz_layers = oz.getLayers();
dojo.forEach(oz_layers, function(lyr) {
if(lyr.graphics && lyr.graphics.length > 0){
dojo.forEach(lyr.graphics, function(graphic) {
var zoneSymbol = new esri.symbol.SimpleFillSymbol( esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([0,255,0,0.25]), 2),new dojo.Color([100,255,100,0.2]));
graphic.setSymbol( zoneSymbol );
//console.log(graphic);
//myLayer.addGraphic( graphic );
});
}
});
});
var tad = new esri.layers.KMLLayer("http://pdfmongotest.herokuapp.com/macon_tads.kml");
map.addLayer(tad);
dojo.connect(tad,'onLoad', function(tad) {
var tad_layers = tad.getLayers();
dojo.forEach(tad_layers, function(lyr) {
if(lyr.graphics && lyr.graphics.length > 0){
dojo.forEach(lyr.graphics, function(graphic) {
var zoneSymbol = new esri.symbol.SimpleFillSymbol( esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([255,160,0,0.25]), 2),new dojo.Color([255,160,0,0.2]));
graphic.setSymbol( zoneSymbol );
//console.log(graphic);
//myLayer.addGraphic( graphic );
});
}
});
});
dojo.connect(map,'onLoad', function(map) {
//resize the map when the browser resizes
dojo.connect(dijit.byId('map'), 'resize', map,map.resize);
});
var incidentPointSymbol = new esri.symbol.SimpleMarkerSymbol(
esri.symbol.SimpleMarkerSymbol.STYLE_CIRCLE,
16,
new esri.symbol.SimpleLineSymbol(
esri.symbol.SimpleLineSymbol.STYLE_SOLID,
new dojo.Color([89,95,35]), 2
),
new dojo.Color([0,200,0,0.4]) );
incidentsGraphicsLayer = new esri.layers.GraphicsLayer();
var incidentsRenderer = new esri.renderer.SimpleRenderer(incidentPointSymbol);
incidentsGraphicsLayer.setRenderer(incidentsRenderer);
map.addLayer(incidentsGraphicsLayer);
loadMedia();
}
function loadMedia(){
incidentsGraphicsLayer.clear();
loadTwitter();
pushFlickr();
pushPanoramio();
// SeeClickFix API key: 4afeca01a9cd7fd47442367c36c589819d290a38
}
function getMediaBounds(){
return esri.geometry.webMercatorToGeographic( map.extent.expand(1.4) );
}
function loadTwitter(){
var lat = 32.82443;
var lng = -83.647209;
var s = document.createElement('script');
var bounds = getMediaBounds();
s.src = "http://search.twitter.com/search.json?q=&geocode=" + bounds.getCenter().y + "," + bounds.getCenter().x + ",0.5mi&rpp=100&callback=loadMyTweets";
s.type = "text/javascript";
document.body.appendChild(s);
}
function loadMyTweets(tweets){
for(var i=0; i<tweets.results.length; i++){
// attempt to map the tweet
if(tweets.results[i].geo && tweets.results[i].geo.coordinates){
incidentsGraphicsLayer.add(new esri.Graphic(new esri.geometry.geographicToWebMercator(new esri.geometry.Point( tweets.results[i].geo.coordinates[1], tweets.results[i].geo.coordinates[0] ))));
$j("#twitterplot").html( $j("#twitterplot").html() + "<hr/>" + tweets.results[i].text );
}
}
}
function pushFlickr(){
var bounds = getMediaBounds();
var s = document.createElement('script');
s.src = "http://api.flickr.com/services/rest/?bbox=" + bounds.xmin + "," + bounds.ymin + "," + bounds.xmax + "," + bounds.ymax + "&extras=geo,owner_name&per_page=10&tags=&method=flickr.photos.search&api_key=8f28e831de92bb79fcb9ec299227020a&has_geo=1&page=1&format=json&jsoncallback=loadFlickr";
s.type = "text/javascript";
document.body.appendChild(s);
}
function loadFlickr(response){
var photos = response.photos.photo;
for(var p=0; p<photos.length; p++){
var flickrUrl = "http://farm"+photos[p].farm+".static.flickr.com/"+photos[p].server+"/"+photos[p].id+"_"+photos[p].secret+"_m.jpg";
$j("#photoplot").html($j("#photoplot").html() + "<img src='" + flickrUrl + "' width='100'/>" );
incidentsGraphicsLayer.add(new esri.Graphic(new esri.geometry.geographicToWebMercator(new esri.geometry.Point( photos[p].longitude, photos[p].latitude ))));
}
}
function pushPanoramio(){
var bounds = getMediaBounds();
var s = document.createElement('script');
s.src = "http://www.panoramio.com/map/get_panoramas.php?set=public&from=0&to=10&minx=" + bounds.xmin + "&miny=" + bounds.ymin + "&maxx=" + bounds.xmax + "&maxy=" + bounds.ymax + "&size=thumbnail&mapfilter=true&callback=viewPhotos";
s.type = "text/javascript";
document.body.appendChild(s);
}
function viewPhotos(pan){
for(var p=0;p<pan.photos.length;p++){
$j("#photoplot").html($j("#photoplot").html() + "<img src='" + pan.photos[p].photo_file_url + "' width='100'/>" );
incidentsGraphicsLayer.add(new esri.Graphic(new esri.geometry.geographicToWebMercator(new esri.geometry.Point( pan.photos[p].longitude, pan.photos[p].latitude ))));
}
}
dojo.addOnLoad(init);
</script>
<!-- end block extrahead -->
<link rel="stylesheet" type="text/css" href="OpenBlockTest_files/style.css">
<link rel="stylesheet" type="text/css" href="http://serverapi.arcgisonline.com/jsapi/arcgis/2.8/js/dojo/dijit/themes/claro/claro.css"/>
<style type="text/css">
.dijitSliderBottomBumper, .dijitSliderLeftBumper, .dijitSliderProgressBar {
background-color: #ffffff;
}
</style>
<!-- <script type="text/javascript" charset="UTF-8" src="OpenBlockTest_files/{common,map}.js"></script> -->
<script type="text/javascript" charset="UTF-8" src="OpenBlockTest_files/{util,onion}.js"></script><script type="text/javascript" charset="UTF-8" src="OpenBlockTest_files/{controls}.js"></script><script type="text/javascript" charset="UTF-8" src="OpenBlockTest_files/{stats}.js"></script></head>
<body id="neighborhoods" class="place-detail-timeline">
<div id="container">
<div id="header">
<h1><a href="http://demo.openblockproject.org/">OpenBlock: Macon</a></h1>
<div id="globalnav">
<div id="userlinks">
<p><a href="http://demo.openblockproject.org/accounts/login/" rel="nofollow">Sign in</a> or <a href="http://demo.openblockproject.org/accounts/register/" rel="nofollow">register</a> for extra features</p>
</div><!--/ #userlinks -->
<form action="http://demo.openblockproject.org/search/" id="globalsearch" onsubmit="if ($j(&#39;#searchinput&#39;).val() == &#39;Search for address, neighborhood, or zip code&#39;) return false; return true;">
<p>
<label for="searchinput">Search for address, neighborhood, or zip code</label>
<input type="text" id="searchinput" name="q" value="Search for address, neighborhood, or zip code" onfocus="if (this.value == &#39;Search for address, neighborhood, or zip code&#39;) { this.value = &#39;&#39;; }" onblur="if (this.value == &#39;&#39;) { this.value = &#39;Search for address, neighborhood, or zip code&#39;; }">
<button type="submit">Go</button>
</p>
</form>
</div><!--/ #globalnav -->
<!-- begin block breadcrumbs -->
<ul id="nav-breadcrumb">
<li>
<a href="http://demo.openblockproject.org/">Macon</a>
</li>
<li>
<a href="http://demo.openblockproject.org/locations/neighborhoods/">Neighborhoods</a>
</li>
<li>
<a href="OpenBlockTest_files/OpenBlockTest.html">East of Mercer</a>
</li>
<li>
Recent: Everything
</li>
</ul>
<!-- end block breadcrumbs -->
</div><!-- / #header -->
<div id="main">
<!-- begin block messages -->
<!-- end block messages -->
<!-- begin block content -->
<div id="nav-location">
<!-- begin block map -->
<div id="mapwrapper">
<link href="OpenBlockTest_files/olwidget.css" type="text/css" media="all" rel="stylesheet">
<script type="text/javascript" src="OpenBlockTest_files/js"></script><script src="OpenBlockTest_files/main.js" type="text/javascript"></script>
<div id="detailmap" class="olMap" style="width:100%;">
</div>
<span style="background-color:#ae8;height:20px;width:25px;display:block;float:left;"></span><span style="float:left;">Opportunity Zones</span>
<div style="clear:both;">
</div>
<span style="background-color:#44f;height:20px;width:25px;display:block;float:left;"></span><span style="float:left;">Urban Redevelopment</span>
<div style="clear:both;">
</div>
<span style="background-color:#f80;height:20px;width:25px;display:block;float:left;"></span><span style="float:left;">Tax Allocation District</span>
<input type="button" style="float:right;" value="Check Media" onclick="loadMedia()"/>
<div style="clear:both;">
</div>
<!-- end richmap.html -->
</div><!--/ #mapwrapper -->
<!-- end block map -->
<!-- block subscribe_links -->
<div class="subscribe-links">
<p>Stay up to date:
<a href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/feeds/">Custom RSS feeds</a>
<a href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/alerts/">E-mail alerts</a>
</p>
</div>
<!-- end block subscribe_links -->
<!-- block nearby_locations -->
<div id="nearby">
<h2>Nearby locations</h2>
<ul>
<li><a id="location-1" href="http://demo.openblockproject.org/locations/zipcodes/02108/">02108</a></li>
<li><a id="location-6" href="http://demo.openblockproject.org/locations/zipcodes/02114/">02114</a></li>
<li><a id="location-7" href="http://demo.openblockproject.org/locations/zipcodes/02115/">02115</a></li>
<li><a id="location-8" href="http://demo.openblockproject.org/locations/zipcodes/02116/">02116</a></li>
<li><a id="location-9" href="http://demo.openblockproject.org/locations/zipcodes/02118/">02118</a></li>
<li><a id="location-29" href="http://demo.openblockproject.org/locations/zipcodes/02215/">02215</a></li>
<li><a id="location-33" href="http://demo.openblockproject.org/locations/neighborhoods/bay-village/">Bay Village</a></li>
<li><a id="location-34" href="http://demo.openblockproject.org/locations/neighborhoods/beacon-hill/">Beacon Hill</a></li>
<li><a id="location-38" href="http://demo.openblockproject.org/locations/neighborhoods/fenwaykenmore/">Fenway/Kenmore</a></li>
<li><a id="location-52" href="http://demo.openblockproject.org/locations/neighborhoods/south-end/">South End</a></li>
</ul>
</div><!-- end #nearby -->
<!-- endblock nearby_locations -->
</div><!--/ #nav-location -->
<!-- begin block place_content -->
<div id="content">
<div id="contentheader">
<h1>East of Mercer</h1>
<!--
<ul class="nav-view">
<li class="selected">Recent News</li>
<li><a href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/upcoming/" rel="nofollow">Upcoming Events</a></li>
<li><a href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/overview/" rel="nofollow">Overview</a></li>
</ul>
-->
<form class="select-filter" method="GET" style="float:none;">
<select id="sectionfilter" class="chzn-select chzn-done" style="width: 260px; display: none; " data-placeholder="Choose a type of information…">
<option value=""></option>
<option value="/police-reports/?locations=neighborhoods%2Cback-bay">Macon Police Department reports</option>
<option value="/local-news/?locations=neighborhoods%2Cback-bay">Local News</option>
<option value="/neighbor-messages/?locations=neighborhoods%2Cback-bay">Neighbor Messages</option>
<option value="/open311-service-requests/?locations=neighborhoods%2Cback-bay">Open311 Service Requests</option>
<option value="/photos/?locations=neighborhoods%2Cback-bay">Photos from Flickr</option>
<option value="/restaurant-inspections/?locations=neighborhoods%2Cback-bay">Restaurant Inspections</option>
</select><div id="sectionfilter_chzn" class="chzn-container chzn-container-single" style="width: 260px;"><a href="javascript:void(0)" class="chzn-single"><span>Choose a type of information…</span><div><b></b></div></a><div class="chzn-drop" style="left: -9000px; width: 258px; top: 28px; "><div class="chzn-search"><input type="text" autocomplete="off" style="width: 223px; "></div><ul class="chzn-results"><li id="sectionfilter_chzn_o_1" class="active-result" style="">Macon Police Department reports</li><li id="sectionfilter_chzn_o_2" class="active-result" style="">Local News</li><li id="sectionfilter_chzn_o_3" class="active-result" style="">Neighbor Messages</li><li id="sectionfilter_chzn_o_4" class="active-result" style="">Open311 Service Requests</li><li id="sectionfilter_chzn_o_5" class="active-result" style="">Photos from Flickr</li><li id="sectionfilter_chzn_o_6" class="active-result" style="">Restaurant Inspections</li></ul></div></div>
<button id="sectionfilterbutton">Go</button>
</form>
</div><!-- /#contentheader -->
<div id="place-detail-content">
<h2>New Today May 1, 2012</h2>
<h4 class="schema_photos" id="photos-20120501">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
3 Photos from Panoramio
</h4>
<div id="twitterplot" class="schema_photos visible" style="max-height:100px;overflow-y:scroll;border:1px solid #000;">
</div>
<div id="photoplot" class="schema_photos visible">
<!-- GROUPED -->
<!--<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/130357/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6986942436_278413cef4_s.jpg" alt="Spine posted by Stephen Sheffield Photography to Flickr" title="Spine posted by Stephen Sheffield Photography to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130310/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7131944127_fbf47dd5f2_s.jpg" alt="new home for my office desk and chair posted by inkdesigner to Flickr" title="new home for my office desk and chair posted by inkdesigner to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130305/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7131900997_733f6d13a8_s.jpg" alt="@mike_shane_howard stuffing his pants posted by big perm to Flickr" title="@mike_shane_howard stuffing his pants posted by big perm to Flickr"></a>
</li> -->
</div>
<h2>New Yesterday April 30, 2012</h2>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120430">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
2 Restaurant Inspections
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-130236" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-130236"></form>
</span>
<span class="location">224 Clarendon St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/130236/" class="url">L.a. Burdick Chocolate inspected: Pass</a></strong>
<p class="info"><span class="date">April 30, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-130235" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-130235"></form>
</span>
<span class="location">880 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/130235/" class="url">John B. Hynes Vet. Mem. Ctr. inspected: Pass</a></strong>
<p class="info"><span class="date">April 30, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120430">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
3 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/130141/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6983966512_f3d64a5dd8_s.jpg" alt="Kitchen appliances posted by Heloisa Madela to Flickr" title="Kitchen appliances posted by Heloisa Madela to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130071/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6982942350_cd2842fa5a_s.jpg" alt="Perspective posted by jadedturtle to Flickr" title="Perspective posted by jadedturtle to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130311/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7128164609_6efcf140ef_s.jpg" alt="setting up new office posted by inkdesigner to Flickr" title="setting up new office posted by inkdesigner to Flickr"></a>
</li>
</div>
<h2>New Sunday April 29, 2012</h2>
<h4 class="schema_photos" id="photos-20120429">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
47 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/130037/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6982383422_4e1959a24a_s.jpg" alt="The Middle Georgia Regional Library posted by hansel. to Flickr" title="The Middle Georgia Regional Library posted by hansel. to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129952/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980806466_d972f9f68c_s.jpg" alt="_IMG4265.jpg posted by carltonsoohoo to Flickr" title="_IMG4265.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129951/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126891207_d57d674223_s.jpg" alt="_IMG4255.jpg posted by carltonsoohoo to Flickr" title="_IMG4255.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129911/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980803876_69a4f390c8_s.jpg" alt="_IMG4254.jpg posted by carltonsoohoo to Flickr" title="_IMG4254.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129915/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980802774_2704b0d1e0_s.jpg" alt="_IMG4252.jpg posted by carltonsoohoo to Flickr" title="_IMG4252.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129913/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126887699_ffbc718243_s.jpg" alt="_IMG4249.jpg posted by carltonsoohoo to Flickr" title="_IMG4249.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129914/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980800584_6f0c64fd99_s.jpg" alt="_IMG4246.jpg posted by carltonsoohoo to Flickr" title="_IMG4246.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129916/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980799070_e2f6eb3ff8_s.jpg" alt="_IMG4226.jpg posted by carltonsoohoo to Flickr" title="_IMG4226.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129909/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126884147_df1ec5410a_s.jpg" alt="_IMG4223.jpg posted by carltonsoohoo to Flickr" title="_IMG4223.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129910/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980797288_3b517ef20f_s.jpg" alt="_IMG4222.jpg posted by carltonsoohoo to Flickr" title="_IMG4222.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129908/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126882009_c06e07140c_s.jpg" alt="_IMG4221.jpg posted by carltonsoohoo to Flickr" title="_IMG4221.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129917/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126880943_723b90a024_s.jpg" alt="_IMG4214.jpg posted by carltonsoohoo to Flickr" title="_IMG4214.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129912/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980794074_3aa0497094_s.jpg" alt="_IMG4211.jpg posted by carltonsoohoo to Flickr" title="_IMG4211.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129919/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126878155_b538b340ff_s.jpg" alt="_IMG4210.jpg posted by carltonsoohoo to Flickr" title="_IMG4210.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129922/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980791440_550fe5f2fc_s.jpg" alt="_IMG4205.jpg posted by carltonsoohoo to Flickr" title="_IMG4205.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129918/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980790196_4f71202140_s.jpg" alt="_IMG4201.jpg posted by carltonsoohoo to Flickr" title="_IMG4201.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129921/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126874373_bc9d91a381_s.jpg" alt="_IMG4198.jpg posted by carltonsoohoo to Flickr" title="_IMG4198.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129907/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980787660_6b1fe052bf_s.jpg" alt="_IMG4197.jpg posted by carltonsoohoo to Flickr" title="_IMG4197.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129920/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126872381_3f85b59803_s.jpg" alt="_IMG4195.jpg posted by carltonsoohoo to Flickr" title="_IMG4195.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129940/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126871151_707851a898_s.jpg" alt="_IMG4191.jpg posted by carltonsoohoo to Flickr" title="_IMG4191.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129933/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980784156_62cf571726_s.jpg" alt="_IMG4184.jpg posted by carltonsoohoo to Flickr" title="_IMG4184.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129931/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126868749_aa189071ff_s.jpg" alt="_IMG4182.jpg posted by carltonsoohoo to Flickr" title="_IMG4182.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129929/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126867163_fa0f0562b5_s.jpg" alt="_IMG4181.jpg posted by carltonsoohoo to Flickr" title="_IMG4181.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129926/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126866065_d133b5282e_s.jpg" alt="_IMG4179.jpg posted by carltonsoohoo to Flickr" title="_IMG4179.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129923/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126862719_09bb683a63_s.jpg" alt="_IMG4176.jpg posted by carltonsoohoo to Flickr" title="_IMG4176.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129935/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980775660_a48d5916e2_s.jpg" alt="_IMG4175.jpg posted by carltonsoohoo to Flickr" title="_IMG4175.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129936/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980773528_cb1b6fdfa5_s.jpg" alt="_IMG4174.jpg posted by carltonsoohoo to Flickr" title="_IMG4174.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129927/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126858193_a9436cc039_s.jpg" alt="_IMG4172.jpg posted by carltonsoohoo to Flickr" title="_IMG4172.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129925/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980770910_1ff462703c_s.jpg" alt="_IMG4171.jpg posted by carltonsoohoo to Flickr" title="_IMG4171.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129938/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126855639_cc2b0f6f37_s.jpg" alt="_IMG4170.jpg posted by carltonsoohoo to Flickr" title="_IMG4170.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129930/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980768148_b65cb419d9_s.jpg" alt="_IMG4169.jpg posted by carltonsoohoo to Flickr" title="_IMG4169.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129928/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126851041_2bc1573832_s.jpg" alt="_IMG4165.jpg posted by carltonsoohoo to Flickr" title="_IMG4165.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129937/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126849659_00318715e7_s.jpg" alt="_IMG4159.jpg posted by carltonsoohoo to Flickr" title="_IMG4159.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129932/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980762574_f6e1e35cdc_s.jpg" alt="_IMG4154.jpg posted by carltonsoohoo to Flickr" title="_IMG4154.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129939/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126847271_153685c09a_s.jpg" alt="_IMG4152.jpg posted by carltonsoohoo to Flickr" title="_IMG4152.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129924/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126845891_0187f5ce9b_s.jpg" alt="_IMG4150.jpg posted by carltonsoohoo to Flickr" title="_IMG4150.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129934/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980758736_03078096aa_s.jpg" alt="_IMG4146.jpg posted by carltonsoohoo to Flickr" title="_IMG4146.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130083/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980754950_debc8786b9_s.jpg" alt="_IMG4139.jpg posted by carltonsoohoo to Flickr" title="_IMG4139.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129950/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126838953_2e2812c198_s.jpg" alt="_IMG4138.jpg posted by carltonsoohoo to Flickr" title="_IMG4138.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129941/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980752028_761b21ee2e_s.jpg" alt="_IMG4136.jpg posted by carltonsoohoo to Flickr" title="_IMG4136.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129942/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980750612_7e4741ea12_s.jpg" alt="_IMG4133.jpg posted by carltonsoohoo to Flickr" title="_IMG4133.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129948/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126835323_855952c5c9_s.jpg" alt="_IMG4128.jpg posted by carltonsoohoo to Flickr" title="_IMG4128.jpg posted by carltonsoohoo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129823/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126179669_fe1e3623db_s.jpg" alt="ch 4 - color posted by seagrass studio to Flickr" title="ch 4 - color posted by seagrass studio to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129785/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6979664508_fdb2abed47_s.jpg" alt=" posted by seagrass studio to Flickr" title=" posted by seagrass studio to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129688/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6979022078_1c4ddc57fc_s.jpg" alt=" posted by Matt Vekasy to Flickr" title=" posted by Matt Vekasy to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129655/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123465045_462b5cc45d_s.jpg" alt="Ну и еще версия :) posted by lenia.petrov to Flickr" title="Ну и еще версия :) posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129654/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123464641_12f9df89f4_s.jpg" alt="Kiss &amp; Hahhvahhd bridge posted by lenia.petrov to Flickr" title="Kiss &amp; Hahhvahhd bridge posted by lenia.petrov to Flickr"></a>
</li>
</div>
<h2>New Saturday April 28, 2012</h2>
<h4 class="schema_photos" id="photos-20120428">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
19 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/130081/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7129284415_1a88a5c715_s.jpg" alt="Who is thirsty? posted by DAH 76 to Flickr" title="Who is thirsty? posted by DAH 76 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129498/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977145218_a1d5e3c66a_s.jpg" alt="Macon Marathon posted by McKristen to Flickr" title="Macon Marathon posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129484/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123153011_ac14ebd0ae_s.jpg" alt="April Showers posted by McKristen to Flickr" title="April Showers posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129437/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123115877_ca3a1eeeee_s.jpg" alt="Dog&#39;s first horse posted by McKristen to Flickr" title="Dog&#39;s first horse posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129466/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976997614_6cb51a6c21_s.jpg" alt=" posted by McKristen to Flickr" title=" posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129467/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123078827_b14eae7cf8_s.jpg" alt="Marlborough Street in Bloom posted by McKristen to Flickr" title="Marlborough Street in Bloom posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129460/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976992556_a5fb79a5f0_s.jpg" alt="First blooms on Comm Ave posted by McKristen to Flickr" title="First blooms on Comm Ave posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129419/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976973482_f6b694edc6_s.jpg" alt="Sunset over the Charles posted by McKristen to Flickr" title="Sunset over the Charles posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129425/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976971088_fa9db2a863_s.jpg" alt="Esplanade posted by McKristen to Flickr" title="Esplanade posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129525/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976968274_667eea8821_s.jpg" alt="DSC05935 posted by Bengt 1955 to Flickr" title="DSC05935 posted by Bengt 1955 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129523/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123049823_cd3e087b56_s.jpg" alt="DSC05934 posted by Bengt 1955 to Flickr" title="DSC05934 posted by Bengt 1955 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129413/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976967320_0e00de0975_s.jpg" alt="Meditation posted by McKristen to Flickr" title="Meditation posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129435/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976956780_140a9fffa7_s.jpg" alt="Esplanade posted by McKristen to Flickr" title="Esplanade posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129431/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123037949_790b49823c_s.jpg" alt="Music posted by McKristen to Flickr" title="Music posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129432/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123037611_1ae3715ea6_s.jpg" alt="Cambridge posted by McKristen to Flickr" title="Cambridge posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129436/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976951450_a9d8952e82_s.jpg" alt="Juxtaposition posted by McKristen to Flickr" title="Juxtaposition posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129434/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6976950454_f87924a166_s.jpg" alt="Comm Ave posted by McKristen to Flickr" title="Comm Ave posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129189/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6975623544_fbefb68434_s.jpg" alt="Drunkapoolza Spring 2012 posted by DAH 76 to Flickr" title="Drunkapoolza Spring 2012 posted by DAH 76 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129178/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6975545074_77c7a92067_s.jpg" alt="Reflex posted by Heloisa Madela to Flickr" title="Reflex posted by Heloisa Madela to Flickr"></a>
</li>
</div>
<h2>New Friday April 27, 2012</h2>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120427">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
3 Restaurant Inspections
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-129107" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-129107"></form>
</span>
<span class="location">727 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/129107/" class="url">Uno Chicago Grill inspected: Pass</a></strong>
<p class="info"><span class="date">April 27, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-129093" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-129093"></form>
</span>
<span class="location">443 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/129093/" class="url">Starucks Coffee # 830 inspected: Pass</a></strong>
<p class="info"><span class="date">April 27, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-129067" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-129067"></form>
</span>
<span class="location">800 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/129067/" class="url">Haru inspected: Pass</a></strong>
<p class="info"><span class="date">April 27, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120427">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
4 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/128976/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7119706313_a1323b8274_s.jpg" alt="Hippies and hipsters. #criticalmass posted by Nat Tarbox to Flickr" title="Hippies and hipsters. #criticalmass posted by Nat Tarbox to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130094/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6972162068_c6aeb65133_s.jpg" alt="Bagel saw posted by harrisimon to Flickr" title="Bagel saw posted by harrisimon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/128889/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6972036378_046ae874e6_s.jpg" alt="Shhh posted by little.brain to Flickr" title="Shhh posted by little.brain to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/128888/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6972035868_e11e6b6e02_s.jpg" alt="Winner posted by little.brain to Flickr" title="Winner posted by little.brain to Flickr"></a>
</li>
</div>
<h2>New Thursday April 26, 2012</h2>
<h4 class="schema_photos" id="photos-20120426">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
9 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/129955/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980946440_46d7f3bb85_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129956/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980944234_3440b42714_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129954/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980941782_609545e145_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129957/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7127026071_3fbc74738c_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129958/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7127024165_b4a58d393c_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129953/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7127022081_704e1359fd_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129962/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7127019725_86d4e8cbcd_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129966/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980931480_aa8dc72e0d_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129826/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980213132_70d98c538a_s.jpg" alt=" posted by hongiiv to Flickr" title=" posted by hongiiv to Flickr"></a>
</li>
</div>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120426">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
3 Restaurant Inspections
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-129103" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-129103"></form>
</span>
<span class="location">33 Stanhope St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/129103/" class="url">The Brahmin inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 26, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-128837" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128837"></form>
</span>
<span class="location">424 Beacon St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128837/" class="url">Seller's Cafe@n.e. College Of Optometry inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 26, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-128851" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128851"></form>
</span>
<span class="location">725 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128851/" class="url">Typhoon Restaurant inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 26, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120426">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
2 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/128688/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6970693408_5c2ae91021_s.jpg" alt="Can you find Jose Louis? posted by big perm to Flickr" title="Can you find Jose Louis? posted by big perm to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/128630/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6969699436_2c885f78fd_s.jpg" alt="Beantown posted by 80SK to Flickr" title="Beantown posted by 80SK to Flickr"></a>
</li>
</div>
<h2>New Wednesday April 25, 2012</h2>
<h4 class="schema_photos" id="photos-20120425">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
37 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/129969/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980929524_2edbee4242_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129960/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7127008623_ffa7bf7961_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129968/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980919530_5994148509_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129965/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980917856_816a8a5e07_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129967/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7127001473_f584359dbf_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129964/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126998993_827763c139_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129963/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980910542_96279af426_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129959/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980909034_af3d6e753a_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129961/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980907414_5eb46dd9f6_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129972/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126991241_d4980b0927_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129970/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126990025_0ea9b9efaa_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129973/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126988477_4faa4b3b32_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129971/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6980901838_19b7a16555_s.jpg" alt=" posted by squamloon to Flickr" title=" posted by squamloon to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129657/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123437983_202e3a9770_s.jpg" alt="Поцелуй на Charles River posted by lenia.petrov to Flickr" title="Поцелуй на Charles River posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129674/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977355940_c4699ae337_s.jpg" alt="MIT и слева еще мост posted by lenia.petrov to Flickr" title="MIT и слева еще мост posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129677/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977355656_808fd75668_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129661/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977355272_89703ec8ef_s.jpg" alt="Река, вид из парка posted by lenia.petrov to Flickr" title="Река, вид из парка posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129668/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977354848_00cd2b60d3_s.jpg" alt="И в другую сторону. Парк слева posted by lenia.petrov to Flickr" title="И в другую сторону. Парк слева posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129656/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977354154_4e18f8d079_s.jpg" alt="Идем в парк, что между Storrow и рекой posted by lenia.petrov to Flickr" title="Идем в парк, что между Storrow и рекой posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129660/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977353692_e8379f0fa9_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129662/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123434973_329030e03c_s.jpg" alt="Вот еще такой фасад. Слева проходит Comm Ave posted by lenia.petrov to Flickr" title="Вот еще такой фасад. Слева проходит Comm Ave posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129663/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123434607_d7ac19e6b2_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129658/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123434301_b2c511d4ac_s.jpg" alt="Фасад! posted by lenia.petrov to Flickr" title="Фасад! posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129665/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977352330_c7aa37dd78_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129669/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977351910_84a6776d65_s.jpg" alt="Bay Window posted by lenia.petrov to Flickr" title="Bay Window posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129667/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977351454_429672dcbd_s.jpg" alt="Newbury St. posted by lenia.petrov to Flickr" title="Newbury St. posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129670/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123432819_636ff8c0fc_s.jpg" alt="Prudential posted by lenia.petrov to Flickr" title="Prudential posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129671/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123432421_ea0ed56da4_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129672/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123431671_e04dfcdde7_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129666/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123431257_917d0c39b4_s.jpg" alt="Copley Station и сразу еще одна церковь posted by lenia.petrov to Flickr" title="Copley Station и сразу еще одна церковь posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129675/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123430877_cca661ea5d_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129676/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977348804_607a2e2755_s.jpg" alt="Back Bay posted by lenia.petrov to Flickr" title="Back Bay posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129673/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123430327_348d2f7d66_s.jpg" alt="Церковь эта отражается в небоскребе posted by lenia.petrov to Flickr" title="Церковь эта отражается в небоскребе posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129664/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123430035_4f270b7580_s.jpg" alt="Церковь на Copley posted by lenia.petrov to Flickr" title="Церковь на Copley posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/130085/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977347472_b83a71f834_s.jpg" alt="Почему так называется, непонятно posted by lenia.petrov to Flickr" title="Почему так называется, непонятно posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129680/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977346586_d8b78c0614_s.jpg" alt="photo posted by lenia.petrov to Flickr" title="photo posted by lenia.petrov to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129679/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977346226_11a7663c22_s.jpg" alt="Красивые какие-то здания здесь posted by lenia.petrov to Flickr" title="Красивые какие-то здания здесь posted by lenia.petrov to Flickr"></a>
</li>
</div>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120425">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
4 Restaurant Inspections
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-128823" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128823"></form>
</span>
<span class="location">25 Massachusetts Av</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128823/" class="url">Hsin Hsin inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 25, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-128847" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128847"></form>
</span>
<span class="location">421 Marlborough St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128847/" class="url">The Corner Tavern inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 25, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-128824" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128824"></form>
</span>
<span class="location">51 Massachusetts Av</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128824/" class="url">India Samraat inspected: Pass W/minor Violations </a></strong>
<p class="info"><span class="date">April 25, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-128846" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128846"></form>
</span>
<span class="location">49 Massachusetts Av</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128846/" class="url">Sweet Cupcakes, Inc. inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 25, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120425">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
3 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/128478/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7114407619_7c80e75296_s.jpg" alt="Seared Local Diver Scallops @ Deuxave posted by LMGoBlue to Flickr" title="Seared Local Diver Scallops @ Deuxave posted by LMGoBlue to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/128479/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7114393331_e8d9b686ae_s.jpg" alt="Seared Hudson Valley Foie Gras @ Deuxave posted by LMGoBlue to Flickr" title="Seared Hudson Valley Foie Gras @ Deuxave posted by LMGoBlue to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/128348/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7113293063_a8cc292bc8_s.jpg" alt="Quotes from The Big Lebowski posted by big perm to Flickr" title="Quotes from The Big Lebowski posted by big perm to Flickr"></a>
</li>
</div>
<h2>New April 24, 2012</h2>
<h4 class="schema_photos" id="photos-20120424">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
1 Photo from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/129827/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7126303473_bd77a9b686_s.jpg" alt=" posted by hongiiv to Flickr" title=" posted by hongiiv to Flickr"></a>
</li>
</div>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120424">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
1 Restaurant Inspection
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-128254" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-128254"></form>
</span>
<span class="location">131 Dartmouth St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/128254/" class="url">Douzo Japanese Restaurant inspected: Pass</a></strong>
<p class="info"><span class="date">April 24, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120424">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
1 Photo from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/128211/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6964624558_7f8bfb4804_s.jpg" alt=" posted by Omer In Stereo to Flickr" title=" posted by Omer In Stereo to Flickr"></a>
</li>
</div>
<h2>New April 23, 2012</h2>
<h4 class="schema_photos" id="photos-20120423">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
6 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/127943/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6961810312_a9a853d3ea_s.jpg" alt="1990-Earth Day-sheet10-frame13 posted by Paul-W to Flickr" title="1990-Earth Day-sheet10-frame13 posted by Paul-W to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127951/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7107880707_0350c07037_s.jpg" alt="1990-Earth Day-sheet10-frame12 posted by Paul-W to Flickr" title="1990-Earth Day-sheet10-frame12 posted by Paul-W to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127940/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6961809466_17eaaf829a_s.jpg" alt="1990-Earth Day-sheet10-frame11 posted by Paul-W to Flickr" title="1990-Earth Day-sheet10-frame11 posted by Paul-W to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127956/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7107879907_16fa42e63c_s.jpg" alt="1990-Earth Day-sheet10-frame10 posted by Paul-W to Flickr" title="1990-Earth Day-sheet10-frame10 posted by Paul-W to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127941/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7107879537_62845eecf9_s.jpg" alt="1990-Earth Day-sheet10-frame09 posted by Paul-W to Flickr" title="1990-Earth Day-sheet10-frame09 posted by Paul-W to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127938/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6961808328_d80a28b8d7_s.jpg" alt="1990-Earth Day-sheet10-frame08 posted by Paul-W to Flickr" title="1990-Earth Day-sheet10-frame08 posted by Paul-W to Flickr"></a>
</li>
</div>
<h2>New April 22, 2012</h2>
<h4 class="schema_photos" id="photos-20120422">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
2 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/127783/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6958758812_b3b39efe96_s.jpg" alt="Heading home. posted by paulrharvey3 to Flickr" title="Heading home. posted by paulrharvey3 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127587/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6958320018_b2d444bb24_s.jpg" alt="Nice day in Macon yesterday posted by beaucolburn to Flickr" title="Nice day in Macon yesterday posted by beaucolburn to Flickr"></a>
</li>
</div>
<h2>New April 21, 2012</h2>
<h4 class="schema_photos" id="photos-20120421">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
10 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/128852/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7117789281_0d10ac6d52_s.jpg" alt="Frosty Treat posted by Chris to Flickr" title="Frosty Treat posted by Chris to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127553/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6958275760_01ec241bc1_s.jpg" alt=" posted by crazard to Flickr" title=" posted by crazard to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/128897/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7104068975_2428208519_s.jpg" alt="069 posted by FadadoFogo to Flickr" title="069 posted by FadadoFogo to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127352/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7102245195_ef2aea9633_s.jpg" alt="Lilacs, Comm Ave posted by Leslee_atFlickr to Flickr" title="Lilacs, Comm Ave posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127349/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6956175654_ebf45d7c02_s.jpg" alt="Tulips, Comm Ave posted by Leslee_atFlickr to Flickr" title="Tulips, Comm Ave posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127268/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7100734685_8d0dd06e27_s.jpg" alt="Inspired posted by Brian Wilkins to Flickr" title="Inspired posted by Brian Wilkins to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127272/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6954664718_929b9938da_s.jpg" alt="Action Stories! posted by Brian Wilkins to Flickr" title="Action Stories! posted by Brian Wilkins to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127269/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7100733917_bdd97ed2d9_s.jpg" alt="Pabst posted by Brian Wilkins to Flickr" title="Pabst posted by Brian Wilkins to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127276/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6954663978_8e4f791aac_s.jpg" alt="Fenway posted by Brian Wilkins to Flickr" title="Fenway posted by Brian Wilkins to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127167/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7099948177_9f7eb96eab_s.jpg" alt="Macon stuff posted by beaucolburn to Flickr" title="Macon stuff posted by beaucolburn to Flickr"></a>
</li>
</div>
<h2>New April 20, 2012</h2>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120420">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
1 Restaurant Inspection
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-127994" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-127994"></form>
</span>
<span class="location">39 Stanhope St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/127994/" class="url">Red Lantern inspected: Pass</a></strong>
<p class="info"><span class="date">April 20, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120420">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
1 Photo from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/126960/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6950554272_9e70a64a1e_s.jpg" alt="Lobster roll on Parmesan breadstick from @lobstalovetruck. Delicious. @lhrtobos posted by Dan Callahan to Flickr" title="Lobster roll on Parmesan breadstick from @lobstalovetruck. Delicious. @lhrtobos posted by Dan Callahan to Flickr"></a>
</li>
</div>
<h4 class="schema_police-reports" id="police-reports-20120420">
<img class="schema-icon" src="OpenBlockTest_files/police.png" alt="Macon Police Department report icon">
1 Macon Police Department report
</h4>
<div class="schema_police-reports visible">
<li id="newsitem-126959" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126959"></form>
</span>
<span class="location">W. Newton St. &amp; St Botolph St.</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/police-reports/detail/126959/" class="url">The BPD Would Like to Commend One Super Watchful Witness for his Help in the Arrest of Two Suspects Wanted ...</a></strong>
<p class="info"><span class="date">April 20, 2012</span> About 12:22pm, on Monday, April 16, 2012, officers from Area D-4 (South End) responded to a radio call for ...</p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h2>New April 19, 2012</h2>
<h4 class="schema_photos" id="photos-20120419">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
1 Photo from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/130265/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6981259862_e02cd77935_s.jpg" alt="img_105-1582 posted by Mark Eichin to Flickr" title="img_105-1582 posted by Mark Eichin to Flickr"></a>
</li>
</div>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120419">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
1 Restaurant Inspection
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-127051" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-127051"></form>
</span>
<span class="location">800 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/127051/" class="url">Haru inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 19, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120419">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
4 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/126750/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6949951656_da299a31d1_s.jpg" alt=" posted by mor3eb to Flickr" title=" posted by mor3eb to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126583/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7094601985_2ff4eed25f_s.jpg" alt="Up posted by jadedturtle to Flickr" title="Up posted by jadedturtle to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126523/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7093817367_6dbeb71013_s.jpg" alt="See you later @salsashark posted by big perm to Flickr" title="See you later @salsashark posted by big perm to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126560/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6947724768_236d69797d_s.jpg" alt="Working downtown is a real drag posted by Plutor to Flickr" title="Working downtown is a real drag posted by Plutor to Flickr"></a>
</li>
</div>
<h2>New April 18, 2012</h2>
<h4 class="schema_photos" id="photos-20120418">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
1 Photo from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/126501/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7093203033_8201d9646a_s.jpg" alt=" posted by megkiwi to Flickr" title=" posted by megkiwi to Flickr"></a>
</li>
</div>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120418">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
1 Restaurant Inspection
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-126370" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126370"></form>
</span>
<span class="location">272 Newbury </span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/126370/" class="url">B. Good inspected: Pass</a></strong>
<p class="info"><span class="date">April 18, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120418">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
4 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/126324/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6946005746_dfd556e3d3_s.jpg" alt="Got Suits? posted by jabely to Flickr" title="Got Suits? posted by jabely to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126282/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7091109353_b7c81b904e_s.jpg" alt="Crosswalk posted by jadedturtle to Flickr" title="Crosswalk posted by jadedturtle to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126274/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7091073265_49dc1425c0_s.jpg" alt="Having just bought a coffee felt the need to take a picture posted by jadedturtle to Flickr" title="Having just bought a coffee felt the need to take a picture posted by jadedturtle to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126232/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6944765362_c70b0a46fd_s.jpg" alt="Something so energizing about working in a beautiful space posted by benspear to Flickr" title="Something so energizing about working in a beautiful space posted by benspear to Flickr"></a>
</li>
</div>
<h2>New April 17, 2012</h2>
<h4 class="schema_restaurant-inspections" id="restaurant-inspections-20120417">
<img class="schema-icon" src="OpenBlockTest_files/restaurant.png" alt="Restaurant Inspection icon">
5 Restaurant Inspections
</h4>
<div class="schema_restaurant-inspections visible">
<li id="newsitem-126435" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126435"></form>
</span>
<span class="location">131 Dartmouth St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/126435/" class="url">Douzo Japanese Restaurant inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 17, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-126462" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126462"></form>
</span>
<span class="location">800 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/126462/" class="url">Sarku Japan inspected: Pass</a></strong>
<p class="info"><span class="date">April 17, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-126187" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126187"></form>
</span>
<span class="location">727 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/126187/" class="url">Uno Chicago Grill inspected: Violations - Re-Inspection Required </a></strong>
<p class="info"><span class="date">April 17, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-126097" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126097"></form>
</span>
<span class="location">569 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/126097/" class="url">Boloco inspected: Pass</a></strong>
<p class="info"><span class="date">April 17, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
<li id="newsitem-126172" class="newsitem">
<span class="newsitem hidden">
<form><input type="checkbox" class="select-newsitem" id="newsitem-126172"></form>
</span>
<span class="location">827 Boylston St</span>
<!-- block newsitem_list_content -->
<strong class="title"><a href="http://demo.openblockproject.org/restaurant-inspections/detail/126172/" class="url">Samurai Macon inspected: Pass</a></strong>
<p class="info"><span class="date">April 17, 2012</span> </p>
<!-- endblock newsitem_list_content -->
</li>
</div>
<h4 class="schema_photos" id="photos-20120417">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
6 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/126234/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7088682069_513b0e2eae_s.jpg" alt="Beat posted by chase_elliott to Flickr" title="Beat posted by chase_elliott to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/126002/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6942164036_94f9aa6c69_s.jpg" alt="Not so cheap seats today. #macon #instagram posted by LeightonOConnor to Flickr" title="Not so cheap seats today. #macon #instagram posted by LeightonOConnor to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127780/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7087500039_9f5cf8f4cf_s.jpg" alt="We love reading! posted by anna banana to Flickr" title="We love reading! posted by anna banana to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125952/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6941429838_384971c926_s.jpg" alt="Patriotic Old South posted by david*T to Flickr" title="Patriotic Old South posted by david*T to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/127782/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7087493929_3142a31d05_s.jpg" alt="Paul reads at the Middle Georgia Regional Library posted by anna banana to Flickr" title="Paul reads at the Middle Georgia Regional Library posted by anna banana to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125955/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7087465793_373595d7a8_s.jpg" alt="The last few steps of the crazy 2012 #maconmarathon. Thanks Kate (Kristin) for getting the shot. I look a lot happier than I felt! posted by Lala Mc to Flickr" title="The last few steps of the crazy 2012 #maconmarathon. Thanks Kate (Kristin) for getting the shot. I look a lot happier than I felt! posted by Lala Mc to Flickr"></a>
</li>
</div>
<h2>New April 16, 2012</h2>
<h4 class="schema_photos" id="photos-20120416">
<img class="schema-icon" src="OpenBlockTest_files/photo.png" alt="Photo from Flickr icon">
114 Photos from Flickr
</h4>
<div class="schema_photos visible">
<!-- GROUPED -->
<li id="newsitem-" class="newsitem photogroup">
<a class="photo" href="http://demo.openblockproject.org/photos/detail/129486/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7123141439_b8d1f50b0f_s.jpg" alt=" posted by McKristen to Flickr" title=" posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129491/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977043936_cef0b9c4fb_s.jpg" alt="The Hancock posted by McKristen to Flickr" title="The Hancock posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/129492/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6977041578_acf01d5805_s.jpg" alt=" posted by McKristen to Flickr" title=" posted by McKristen to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125947/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6941138450_43a16c91d5_s.jpg" alt="First BBQ posted by Leslee_atFlickr to Flickr" title="First BBQ posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125946/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6941138404_e4b4db6d98_s.jpg" alt="First BBQ 2012 posted by Leslee_atFlickr to Flickr" title="First BBQ 2012 posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125875/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085925033_f54a1fe73e_s.jpg" alt="Supporters &amp; spectators in Boylston St bar posted by Leslee_atFlickr to Flickr" title="Supporters &amp; spectators in Boylston St bar posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125876/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939852078_83cf4672e0_s.jpg" alt="At the bend onto Hereford Street posted by Leslee_atFlickr to Flickr" title="At the bend onto Hereford Street posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125869/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939852024_edd873b04a_s.jpg" alt="Prolly not a runner posted by Leslee_atFlickr to Flickr" title="Prolly not a runner posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125872/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939851982_98d71d6548_s.jpg" alt="Comm Ave underpass posted by Leslee_atFlickr to Flickr" title="Comm Ave underpass posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125873/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085924797_09018237c3_s.jpg" alt="Heavy loads, Comm Ave underpass posted by Leslee_atFlickr to Flickr" title="Heavy loads, Comm Ave underpass posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125870/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939851616_1c2cef3149_s.jpg" alt="Dog Tired posted by Leslee_atFlickr to Flickr" title="Dog Tired posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125871/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085924481_df88e88b56_s.jpg" alt="Gatorade Tent posted by Leslee_atFlickr to Flickr" title="Gatorade Tent posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125874/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939851494_0c5cb66beb_s.jpg" alt="Exhausted posted by Leslee_atFlickr to Flickr" title="Exhausted posted by Leslee_atFlickr to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125768/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085896939_68c16df72e_s.jpg" alt="19829 116th Macon Marathon posted by hogan3774 to Flickr" title="19829 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125772/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939822780_3ff002f3e3_s.jpg" alt="19828 116th Macon Marathon posted by hogan3774 to Flickr" title="19828 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125766/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085894389_68f896c90b_s.jpg" alt="19827 116th Macon Marathon posted by hogan3774 to Flickr" title="19827 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125771/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085893195_57c976c74d_s.jpg" alt="19826 116th Macon Marathon posted by hogan3774 to Flickr" title="19826 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125770/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939819088_8b70883662_s.jpg" alt="19824 116th Macon Marathon posted by hogan3774 to Flickr" title="19824 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125765/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085890751_f85175341a_s.jpg" alt="19823 116th Macon Marathon posted by hogan3774 to Flickr" title="19823 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125773/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939816392_775b77a052_s.jpg" alt="19822 116th Macon Marathon posted by hogan3774 to Flickr" title="19822 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125769/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939815288_a57138bcc5_s.jpg" alt="19821 116th Macon Marathon posted by hogan3774 to Flickr" title="19821 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125786/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939813650_aaf8c011a2_s.jpg" alt="19820 116th Macon Marathon posted by hogan3774 to Flickr" title="19820 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125783/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939812200_30645017c3_s.jpg" alt="19817 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19817 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125780/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939810720_3014af61e0_s.jpg" alt="19816 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19816 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125774/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939809220_0e7ce5a164_s.jpg" alt="19815 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19815 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125778/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939806724_179c67362b_s.jpg" alt="19813 116th Macon Marathon posted by hogan3774 to Flickr" title="19813 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125782/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085878515_1ff29ba05f_s.jpg" alt="19812 116th Macon Marathon posted by hogan3774 to Flickr" title="19812 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125787/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085877413_b75317c0aa_s.jpg" alt="19811 116th Macon Marathon posted by hogan3774 to Flickr" title="19811 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125776/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085876097_be09e6093b_s.jpg" alt="19809 116th Macon Marathon posted by hogan3774 to Flickr" title="19809 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125785/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939801934_2d26b8aa17_s.jpg" alt="19808 116th Macon Marathon posted by hogan3774 to Flickr" title="19808 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125788/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939800700_2fc3f948e2_s.jpg" alt="19807 116th Macon Marathon posted by hogan3774 to Flickr" title="19807 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125777/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939799386_e3caf306e2_s.jpg" alt="19806 116th Macon Marathon posted by hogan3774 to Flickr" title="19806 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125784/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085870979_a175735d9f_s.jpg" alt="19805 116th Macon Marathon posted by hogan3774 to Flickr" title="19805 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125790/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085869781_1151d13482_s.jpg" alt="19804 116th Macon Marathon posted by hogan3774 to Flickr" title="19804 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125779/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085868685_633a86a2c6_s.jpg" alt="19803 116th Macon Marathon posted by hogan3774 to Flickr" title="19803 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125781/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085866785_0fe6a2628b_s.jpg" alt="19802 116th Macon Marathon posted by hogan3774 to Flickr" title="19802 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125789/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939792220_b5080263fe_s.jpg" alt="19801 116th Macon Marathon posted by hogan3774 to Flickr" title="19801 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125775/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085864223_fe2685679a_s.jpg" alt="19799 116th Macon Marathon posted by hogan3774 to Flickr" title="19799 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125805/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085862707_34b041a9aa_s.jpg" alt="19798 116th Macon Marathon posted by hogan3774 to Flickr" title="19798 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125792/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085861031_40904dabbe_s.jpg" alt="19797 116th Macon Marathon posted by hogan3774 to Flickr" title="19797 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125793/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085859769_d894b5c0eb_s.jpg" alt="19796 116th Macon Marathon posted by hogan3774 to Flickr" title="19796 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125798/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939785782_d700531ec0_s.jpg" alt="19794 116th Macon Marathon posted by hogan3774 to Flickr" title="19794 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125803/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085857467_a5ddbd797f_s.jpg" alt="19793 116th Macon Marathon posted by hogan3774 to Flickr" title="19793 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125791/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939783426_04797597b4_s.jpg" alt="19792 116th Macon Marathon posted by hogan3774 to Flickr" title="19792 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125799/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085855103_013a4291e7_s.jpg" alt="19791 116th Macon Marathon posted by hogan3774 to Flickr" title="19791 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125795/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085853901_3329d171cd_s.jpg" alt="19790 116th Macon Marathon posted by hogan3774 to Flickr" title="19790 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125801/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939779696_8c06c9d59d_s.jpg" alt="19788 116th Macon Marathon posted by hogan3774 to Flickr" title="19788 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125800/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939778412_5796c22bce_s.jpg" alt="19787 116th Macon Marathon posted by hogan3774 to Flickr" title="19787 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125806/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939777050_eb707cffdf_s.jpg" alt="19786 116th Macon Marathon posted by hogan3774 to Flickr" title="19786 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125802/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085848933_96d0e3010b_s.jpg" alt="19785 116th Macon Marathon posted by hogan3774 to Flickr" title="19785 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125796/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085847767_e690378d4c_s.jpg" alt="19784 116th Macon Marathon posted by hogan3774 to Flickr" title="19784 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125797/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085846589_9fabf89ace_s.jpg" alt="19783 116th Macon Marathon posted by hogan3774 to Flickr" title="19783 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125804/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939772036_47104e2b26_s.jpg" alt="19782 116th Macon Marathon posted by hogan3774 to Flickr" title="19782 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125808/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939770788_0a594559bf_s.jpg" alt="19781 116th Macon Marathon posted by hogan3774 to Flickr" title="19781 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125807/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085842597_482f6221c1_s.jpg" alt="19779 116th Macon Marathon posted by hogan3774 to Flickr" title="19779 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125794/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939766770_3025581f6e_s.jpg" alt="19776 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr" title="19776 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125814/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085838585_6ae89d02fe_s.jpg" alt="19775 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr" title="19775 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125820/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085837311_45a2199eb4_s.jpg" alt="19774 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr" title="19774 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125813/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939762942_e8cb0f7cf1_s.jpg" alt="19773 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr" title="19773 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125809/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085834821_7ef392830f_s.jpg" alt="19772 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr" title="19772 116th Macon Marathon - Team Noah posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125823/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939760560_438e8a8014_s.jpg" alt="19771 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19771 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125825/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085832219_38707a665b_s.jpg" alt="19769 116th Macon Marathon posted by hogan3774 to Flickr" title="19769 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125812/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085830895_27e878f438_s.jpg" alt="19767 116th Macon Marathon posted by hogan3774 to Flickr" title="19767 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125815/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939756696_b34a0672f7_s.jpg" alt="19766 116th Macon Marathon posted by hogan3774 to Flickr" title="19766 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125827/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085828347_4efb9908a7_s.jpg" alt="19765 116th Macon Marathon posted by hogan3774 to Flickr" title="19765 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125824/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085827191_0831e34bf3_s.jpg" alt="19764 116th Macon Marathon posted by hogan3774 to Flickr" title="19764 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125819/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939753236_7bd9880b95_s.jpg" alt="19763 116th Macon Marathon posted by hogan3774 to Flickr" title="19763 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125821/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085824853_d6b8ef03b8_s.jpg" alt="19762 116th Macon Marathon posted by hogan3774 to Flickr" title="19762 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125822/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939751060_c9d54b974b_s.jpg" alt="19761 116th Macon Marathon posted by hogan3774 to Flickr" title="19761 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125826/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939749904_ca12d0840f_s.jpg" alt="19760 116th Macon Marathon posted by hogan3774 to Flickr" title="19760 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125811/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939748738_bb9c9c0cf5_s.jpg" alt="19759 116th Macon Marathon posted by hogan3774 to Flickr" title="19759 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125817/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085820119_611ef197a3_s.jpg" alt="19758 116th Macon Marathon posted by hogan3774 to Flickr" title="19758 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125828/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085819063_a64a48dea7_s.jpg" alt="19757 116th Macon Marathon posted by hogan3774 to Flickr" title="19757 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125810/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085817817_86925e13b9_s.jpg" alt="19755 116th Macon Marathon posted by hogan3774 to Flickr" title="19755 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125818/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085816749_45ae5789f6_s.jpg" alt="19754 116th Macon Marathon posted by hogan3774 to Flickr" title="19754 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125816/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939742768_d871e4de9b_s.jpg" alt="19752 116th Macon Marathon posted by hogan3774 to Flickr" title="19752 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125843/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939741684_aaaf1312d4_s.jpg" alt="19749 116th Macon Marathon posted by hogan3774 to Flickr" title="19749 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125840/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939740328_5568d345c1_s.jpg" alt="19747 116th Macon Marathon posted by hogan3774 to Flickr" title="19747 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125838/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085811749_6fb36455f7_s.jpg" alt="19746 116th Macon Marathon posted by hogan3774 to Flickr" title="19746 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125844/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939737892_de136e5d5e_s.jpg" alt="19745 116th Macon Marathon posted by hogan3774 to Flickr" title="19745 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125830/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085809263_f3ac8d28c0_s.jpg" alt="19744 116th Macon Marathon - UMass ROTC posted by hogan3774 to Flickr" title="19744 116th Macon Marathon - UMass ROTC posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125833/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085807997_a6239cccd1_s.jpg" alt="19743 116th Macon Marathon - UMass ROTC posted by hogan3774 to Flickr" title="19743 116th Macon Marathon - UMass ROTC posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125832/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939733894_311645b0c7_s.jpg" alt="19742 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19742 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125831/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939732730_6af0affd67_s.jpg" alt="19741 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19741 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125834/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939731432_6be57cac32_s.jpg" alt="19740 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19740 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125841/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939729550_187ef3cdd1_s.jpg" alt="19739 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19739 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125835/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085800753_bacbeba1e9_s.jpg" alt="19738 116th Macon Marathon posted by hogan3774 to Flickr" title="19738 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125839/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085799407_82898911c1_s.jpg" alt="19736 116th Macon Marathon posted by hogan3774 to Flickr" title="19736 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125845/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939725700_1bf5802a11_s.jpg" alt="19735 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19735 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125846/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939724774_eb0b322f3c_s.jpg" alt="19734 116th Macon Marathon - National Guard posted by hogan3774 to Flickr" title="19734 116th Macon Marathon - National Guard posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125836/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939723670_b8e07a7e6f_s.jpg" alt="19733 116th Macon Marathon posted by hogan3774 to Flickr" title="19733 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125842/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939722636_6e882be114_s.jpg" alt="19731 116th Macon Marathon posted by hogan3774 to Flickr" title="19731 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125837/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085793799_5f91897f91_s.jpg" alt="19729 116th Macon Marathon posted by hogan3774 to Flickr" title="19729 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125829/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939719932_350de42d61_s.jpg" alt="19728 116th Macon Marathon posted by hogan3774 to Flickr" title="19728 116th Macon Marathon posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125855/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939718758_8ebccd78e0_s.jpg" alt="19726 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr" title="19726 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125862/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085790273_aa165924d1_s.jpg" alt="19724 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr" title="19724 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125852/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939716408_e68db283a6_s.jpg" alt="19723 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19723 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125854/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939715396_534c4a8ab1_s.jpg" alt="19718 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr" title="19718 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125857/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939714262_07f21e9407_s.jpg" alt="19717 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr" title="19717 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125864/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939712874_5b073e38e8_s.jpg" alt="19716 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr" title="19716 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125853/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939711538_376a6b43be_s.jpg" alt="19714 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19714 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125859/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085783279_b990896ca7_s.jpg" alt="19711 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr" title="19711 116th Macon Marathon - Men&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125856/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939709168_323d829822_s.jpg" alt="19709 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19709 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125858/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085780873_34031dd15b_s.jpg" alt="19702 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19702 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125848/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085779861_46a11abd6c_s.jpg" alt="19697 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19697 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125850/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085778669_46412d6e68_s.jpg" alt="19693 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19693 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125866/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939704860_67d1a7ed92_s.jpg" alt="19692 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19692 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125849/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939703812_322d8b3765_s.jpg" alt="19690 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr" title="19690 116th Macon Marathon - Women&#39;s Elite posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125860/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085774287_d700d8e148_s.jpg" alt="19688 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr" title="19688 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125863/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939700286_57d3141318_s.jpg" alt="19687 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr" title="19687 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125847/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939699270_efef861dea_s.jpg" alt="19685 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr" title="19685 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125861/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085771013_06b7fb327f_s.jpg" alt="19683 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr" title="19683 116th Macon Marathon - Wheelchair Racer posted by hogan3774 to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125634/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/7085623713_0ba5bb7bc7_s.jpg" alt="Macon Marathon - 4 posted by xrogly to Flickr" title="Macon Marathon - 4 posted by xrogly to Flickr"></a><a class="photo" href="http://demo.openblockproject.org/photos/detail/125631/" rel="nofollow"><img width="75" height="75" class="thumbnail" src="OpenBlockTest_files/6939549758_b862fc94da_s.jpg" alt="Macon Marathon - 3 posted by xrogly to Flickr" title="Macon Marathon - 3 posted by xrogly to Flickr"></a>
</li>
</div>
<!-- Pagination. -->
<p><strong>Items 1-300</strong> (Page 1)</p>
<ul>
<li><a href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/?page=2" rel="nofollow">Older</a></li>
</ul>
<div id="alerts-signup">
<h2>Sign up for:</h2>
<ul>
<li><a class="email" href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/alerts/">E-mail alerts</a></li>
<li><a class="feed" href="http://demo.openblockproject.org/locations/neighborhoods/back-bay/feeds/">Custom RSS feeds</a></li>
</ul>
</div>
</div><!--/ #place-detail-content -->
<!-- begin block extracontent -->
<div id="disclaimer"> Disclaimer: Beta site!
</div>
<!-- end block extracontent -->
</div><!--/ #content -->
<!-- end block place_content -->
<!-- end block content -->
</div><!-- / #main -->
</div><!-- / #container -->
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment