Last active
December 25, 2016 13:02
-
-
Save blackandred/3f7146d0d6ec662ae9fa9a043bffbfc2 to your computer and use it in GitHub Desktop.
Twig - HTML Meta / SEO tags # https://github.com/Wolnosciowiec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% import "SEOTags.html.twig" as SEOTags %} | |
{% block header_meta %} | |
{{ | |
SEOTags.draw({ | |
'title': 'Hello World', | |
'description': 'Hi, this is a test', | |
'keywords': ['first', 'second', 'third'], | |
'image': 'http://.../image.jpg' | |
}) | |
}} | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment