例えば、ページによってmetaタグの出し訳をしたい場合があると思います。
アクセスURLをTwigで取得してif文で出し分けすることができます。
{% set current_path=path(app.request.attributes.get('_route'),app.request.attributes.get('_route_params')) %}
{% if current_path == "/" %}
<meta name="robots" content="index">
{% else %}
<meta name="robots" content="noindex">
{% endif %}
EC-CUBE4 各商品ごとにメタタグを設定できるようにする方法