Los Altos – 40 North Main St.
In late 2018, a developer in Los Altos took a discretionary project that had been denied by the Los Altos City Council and reworked it to qualify for ministerial approval under SB 35. The project, which had initially been entirely office space was converted to a mixed-use development with multiple on-site below-market-rate units. The developer […]
Categories
New Documents
if (is_tax()) {
$docs = new WP_Query(array('post_type' => 'document', 'tax_query' => array(array('taxonomy' => 'library_tag', 'terms' => array(get_queried_object_id())))));
} else {
$docs = new WP_Query(array('post_type' => 'document'));
}
while ($docs->have_posts()) {
$docs->the_post();
get_template_part('partials/document_card');
}
wp_reset_postdata();
?>