XF 2.0 Homepage customization

In page_container find
Code:
<xf:macro name="breadcrumbs" arg-breadcrumbs="!" arg-navTree="!" arg-selectedNavEntry="{{ null }}" arg-variant="">
	<xf:if contentcheck="true">
add after it
Code:
<xf:if is="$template !== 'page_view'">
and add matching
Code:
</xf:if>
about 20 lines below.

Then replace
Code:
<xf:if is="!$noH1">
with
Code:
<xf:if is="!$noH1 && ($template !== 'page_view')">
Then do change similar to first change in share_page_macros. Add condition on third line and matching closing tag around line 80.
 
Top Bottom