renderMeta()
The twig-function {{ assets.renderMeta() }} adds standard meta-tags to the theme. Use the plugin methods getMeta() and addMeta() to add or remove meta-tags.
Example Usage
<head>
<title>{% block title %}{% endblock %}</title>
<meta name="description" content="{{ metatabs.meta.description }}" />
<meta name="author" content="{{ metatabs.meta.author }}" />
<meta name="generator" content="Typemill" />
<meta rel="canonical" href="{{ item.urlAbs }}" />
{{ assets.renderMeta() }}
</head>
Standard Meta Tags
By default Typemill will add the following meta-tags:
og:site_nameog:titleog:descriptionog:typeog:url
Typemill will add the following meta-tags, if the admin has added these information in the admin panel:
icon(Favicons in different sizes)noindexog:imagetwitter:image:alttwitter:card
It will not add meta-data like title, description, or canonical tags, so you have to add these meta-tags manually.