<?php get_header(); ?>
<?php genesis_home(); ?>
<!-- Start Slider -->
<div id="home-slider">
<?php $directory = "images/slider/";
//$images = glob($directory . "*.jpg");
$images = glob($directory . "*.{svg,jpg,png}", GLOB_BRACE);
shuffle($images);
$c=0;
foreach($images as $image){
  echo ('<figure><img class="img-responsive" src=');
  echo $image;
  echo(' width="100%"></figure>');
  $c+=1;
  if($c==4){
	break;
  }
}
?>
	<div class="wrap">
    <?php if (!dynamic_sidebar('Home Slider')) : ?>
			<?php if( function_exists('wp_cycle') ) : ?>
				<?php wp_cycle(); ?>
			<?php endif; ?>		
		<?php endif; ?>
    </div>
</div>

<!-- End Slider -->
<!-- Start Featured Links -->
<!-- <div id="featured-links">
<!--     <div class="wrap"> -->
<!--      <?php if (!dynamic_sidebar('Home Featured Links')) : ?>  -->
<!--     			<?php if( function_exists('wp_cycle') ) : ?>  -->
<!-- 	 			<?php wp_cycle(); ?>  -->
<!-- 	  		<?php endif; ?>		 -->
<!-- 	 	<?php endif; ?>  -->
 <!--    </div> -->
<!-- </div> -->
<!-- End Featured Link -->

<!-- Start News Feed -->
<div id="home-news">
    <div class="wrap">
                <?php
                        $path=$_SERVER['REQUEST_URI'];
                        $href='https://sar.oxnardpd.org';
                        if($path=="/es/"){
                                $href='https://sar.oxnardpd.org/?l=es';
                        }
                        echo "<a class='yellowbutton' target='sar' href='$href'>Report Suspicious Activity</a>";
                ?>
    </div><br>

    <div class="wrap">	
    <h4 class="widget-title widgettitle">News Releases</h4>
<?php
	$loop = new WP_Query( array( 
	'post_type' => 'post', 
	'category_name' => 'news-releases', 
	'posts_per_page' => 6, 
	'orderby' => 'date',
	'order' => 'desc',
	) ); 
?>
<?php while ( $loop->have_posts() ) : $loop->the_post();  ?>
<article class="post-<?php get_the_ID(); ?>" itemtype="http://schema.org/BlogPosting" itemscope="itemscope">
<p class="entry-meta"><?php echo get_the_date(); ?></p>
<div class="entry-content">
<p><?php echo wp_trim_words( get_the_content(), 40, '...<p><a class="more-link" href="'. get_permalink() .'">Read The Full Press Release</a></p>'  ); ?></p>
</div>
</article>
<?php endwhile; ?> 
	</div>
</div>
<!-- End News Feed -->


<?php get_footer(); ?>
