I have a client side blog app that shows list of articles when loaded. I want to load the article data from server including the dynamic meta tags of that page for SEO purposes
For example:
- I click on a link: https://www.techstack21.com/article/function-returning-other-functions-in-javascript
Where I want make a GET
request with query string /?url=function-returning-other-functions-in-javascript
and render template from server to client similar to pug
or jade
templating engines.
How do I achieve this in angular 6?
I don't want to render complete app on server but only for particular urls with query strings as example above