As I understand it, you have this code snip in all tiddlers, true, because it has that tag. BUT only those tiddlers that fulfill the condition will actually show something and the condition is that the (current) tiddler is a system tiddler, i.e that it has the title prefix "$:/". If you're looking at a tiddler that is
not a system tiddler, then the viewtemplate will not show anything because the condition is not fulfilled. If it IS a system tiddler, it might show something.
Maybe what you want is:
`<$list filter="[all[current]backlinks[]] +[prefix[$:/]sort[title]]"><span class="indent1"><$transclude field="text" mode="block"/><$link >---</$link></span></$list>`
I didn't try this by I think this should first get all backlinks to the current tid and then add the condition that it should be a system tid and then sort.
<:-)