I\'m trying to retrieve the URL and the Title values of a Link field in Drupal 8.
In my custom controller, I retrieve the nodes with:<
Updated for Drupal 8
To get the url all you need to do is:
{{ content.field_link_name[0]['#url'] }}
To get the link text:
{{ content.field_link_name[0]['#title'] }}