<?php
/* Template Name: News Tamplate */
?>
<?php
$url = get_template_directory_uri();
?>
<?php get_header( ); ?>
<div class="page-content">
<div class="page-title--container" style="background: center / cover no-repeat url('<?php echo $url; ?>/images/news-title.jpg') #1c2e57;">
<div class="wrapper">
<h1 class="page--title">LATEST TRUCKS NEWS, <br>INFORMATION & UPDATES</h1>
</div>
</div>
<section class="news-page--content">
<div class="wrapper">
<div class="news-list--container">
<?php
$args = array(
'numberposts' => 20,
'category_name' => 'news'
);
$my_posts = get_posts( $args );
foreach($my_posts as $pst){
?>
<div class="news-list--item">
<a href="<?= get_permalink( $pst->ID ); ?>">.
<span class="new-list--content">
<span class="news-item--date"><?=$pst->post_date?></span>
<span class="news-item--title"><?=$pst->post_title ?></span>
<span class="news-item--exerpt"><?=$pst->post_excerpt?></span>
</span>
<span class="new-list--thumbnail">
<img src="<?=get_the_post_thumbnail_url($pst->ID, 'full'); ?>" alt="">
</span>
</a>
</div>
<?php } ?>
</div>
</div>
</section>
</div>
<?php get_footer( ); ?>