{# Test the url and path twig functions #}
path (as route) not absolute: {{ path('user.register') }}
url (as route) absolute: {{ url('user.register') }}
path (as route) not absolute with fragment: {{ path('user.register', {}, {'fragment': 'bottom' }) }}
url (as route) absolute despite option: {{ url('user.register', {}, {'absolute': false }) }}
url (as route) absolute with fragment: {{ url('user.register', {}, {'fragment': 'bottom' }) }}