Hey folkens, nogle der kan forklare hvorfor alt der står under "php get_template_part" ikke bliver en del af min side ? :)
<?php get_header(); ?>
<?php get_template_part( 'partials/primary-nav' ); ?>
<section class="container">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="header__left">
<?php the_post_thumbnail(); ?>
<h1><?php the_title(); ?></h1>
</div>
<div class="andre-producenter"><?php get_template_part( 'andre-producenter' ); ?></div>
<article class="sidebar__right">
<?php the_content(); ?>
</article>
<?php endwhile; else: ?>
<p><?php _e( 'Ingen ting her', 'textdomain' ); ?></p>
<?php endif; ?>
<?php if( get_field( "deloverskrift" ) ): ?>
<h2 class="zero"><?php the_field( "deloverskrift" ); ?></h2>
<?php endif; ?>
</div>
<div class="header__right">
</div>
</div>
</article>
<aside class="last">
</aside>
<?php get_footer(); ?>