I have a polymer node site that I've been working on and can't figure out how to include dynamic meta tags and Open Graph tags. Jquery won't work and neither will using the polymer api to add a node because it will add all the tags after the page loads and facebook won't be able to read the tags. Google crawlers do render the page but it would be best if I could set the description in the header.
<html>
<head>
<meta name="description" content="description goes here" />
<meta property="og:title" content="title"/>
</head>
<body>
<group-pages id="grouppages" is="dom-bind"></group-pages>
</body>
</html>
grouppages sets the data and uses a services to populate the page based off the url but what I can't find out is how to change the meta tags depending on the page.
Anyone have any ideas?
One thought was get information server side and send it in to polymer but I'm still not sure if that's possible between node and polymer.