Putting tags into HTML meta keywords
19 Jul 2017 | blogI wanted to include a page’s tags in an HTML meta
tag as keywords.
Given a page with these tags:
gradle spring-boot
I want the HTML header to contain:
<meta name="keywords" content="gradle,spring-boot">
I achieved that simply by adding this into the head.html
include file:
{% if page.tags %}
<meta name="keywords" content="{{ page.tags | join: ',' }}">
{% endif %}