Currently I am using the persona theme as a base template and building a custom theme for nodebb. One of the first things I've added is svg.tpl which is included in the header.tpl.
Within the svg I have this href:
<a href="{config.relative_path}/category/20/my-category" itemprop="url" id="test">
<path
style="fill:#d3d3d3"
d="M 405.19098,251.879 L 405.74898,257.292 L 401.35098,257.81 L 401.01298,254.629 L 400.88598,253.474 L 401.30098,253.43 L 401.43098,253.322 L 401.30098,252.294 L 405.19098,251.879" />
</a>
When this svg is clicked, the entire page reloads, rather than when a category is clicked and it only reloads the categories section of the theme.
I'd love for the svg to persist through the navigation of categories and topics. How would I go about doing this?