I would like to add a pipe " | " between each li
item in PyroCMS Navigation
in the HTML template View we use
code
{{ navigation:links group="main_nav" }}
which outputs
output
#li><a href='#'>home</a></li>
#li><a href='#'>contact</a></li>
What I would like to do is have the pipe after the link
output
#li><a href='#'>home</a> | </li>
#li><a href='#'>contact</a> | </li>