Simple 5 page sage theme help

Hello, i am new to sage but not new to wordpress:

I am trying to make a few custom pages
Home
About
Services
Blog
Contact

For the home page i created a file /app/themes/theme/resources/views/template-home.blade…php and set the home page to use this template but it shows the following in the page:
{{-- Template Name: Home Template --}} @extends('layouts.app') @section('content') @while(have_posts()) @php(the_post()) @include('partials.page-header') @include('partials.content-page') @endwhile @endsection in the page

Additionally when i use the default template for this page my header and footer from the following file works, but not when i use the home template

web/app/themes/theme/resources/views/sections/header.blade.php
web/app/themes/theme/resources/views/sections/footer.blade.php

Given the setup i want simple 5 page setup with header and footer on all pages how would you go about setting this up.