I made a custom home page and moved the normal home page to /news. With the only changed file in the theme being the added home page, the /news page(old home page) now has broken css, the slider being the noticeable part. I poked around a bit but I can’t gather why.
The site I am editing is live with these errors at https://serbc.ridvan.org.
I have also been having difficulty getting the normal post css to apply to the new home page’s body content. I’m not sure if this issue is theme specific, or if its an error with my handlebars syntax.
excerpt from my home.hbs
for the homepage styling issue.
{{#page}}
<article>
<div class="l-content">
<div class="l-wrapper in-post" data-aos="fade-up" data-aos-delay="300">
<div class="l-post-content">
<div class="pos-relative js-post-content">
{{content}}
</div>
</div>
</div>
</div>
</article>
{{/page}}