[Solved] Cannot get #element to link to dynamic page!

You need to use the backtick ` for template literals . So…

instead of this:

let linkToDynamicPage = '/link-projects-title/${title}';

you want this:

let linkToDynamicPage = `/link-projects-title/${title}`;