Inspect the page and look for:
data-template="name_of_the_template"
. You'll find it at the top where the
<body>
tag starts.
For instance, to remove the breadcrumbs on the Latest activity page you'll use this code:
HTML:
[data-template="latest_activity"] .p-breadcrumbs {
display: none;
}