
Thousands of Colorado schoolchildren are homeless under federal education law, living in motels, shelters and other families’ bedrooms and basements. They bounce from school to school as their families move across the city. The ranks of these “invisibly homeless” are growing, as a tough economy puts pressure on families. The number of homeless schoolchildren in this state has more than tripled in a decade, climbing above 23,000. The repercussions are profound.
Denver Post staff photojournalist Joe Amon documented the challenges faced by children considered homeless under federal education law.
//
{{#ImageElementCollection}}
<div id="images">
{{#ImageElement}}
<div class="imagewrap">
<div class="imagecontainer">
<a name="photo{{position}}"><img src="{{fullUrl}}" alt="Description of {} {{caption}}" /></a>
</div>
<div class="caption"><div class="linkage"><p><a href="#photo{{position}}">{{position}}</a></p></div><p>{{#if caption}} {{caption}} {{/if}}<a class="hashy" href="#photo{{position}}">#</a></p></div>
</div>
{{/ImageElement}}
</div>
{{/ImageElementCollection}}
////
//
(function($){
var noCache = Date(), // Prevent IE caching of JSON
positionCounter = 0,
url,
json = _JSONHelper; // CUSTOM CODE found in js/JSON_helper.js
// COUNTER FOR HANDLEBARS (PAGINATION)
Handlebars.registerHelper(‘position’, function() {
// More than one position per loop
if (url !== this.fullUrl) {
url = this.fullUrl;
return positionCounter++;
}
else {
return positionCounter;
}
});
// get data from json object
$.getJSON(json, { "noCache": noCache }, function(data) {
// build the carousel
template = Handlebars.compile($(‘#longformTemp’).html());
html = template(data);
$(‘.photo-gallery’).html(html);
});
})(jQuery);
////



