OK, some progress. I was able to get the sidebar to show up with the following code:
<?php
/*Template Name: Blog With Sidebar*/
get_header();
get_template_part('loop-post');
?>
<div class="sidebar">
<div class="sidebar-wrap"><?php get_template_part( 'sidebar-page' ); ?></div>
</div>
<p?php
get_footer();
get_sidebar('homepage');
?>
However – it shows up at the bottom of the page instead of the right hand side. Can you help with this?
Thank you!
M