Last active
August 16, 2019 23:01
-
-
Save curtismchale/cc5a6a6a08ea6de2a537766a64734f15 to your computer and use it in GitHub Desktop.
Code for adding an edit link to the Statamic theme: https://curtismchale.ca/2019/08/16/add-edit-url-to-statamic-content
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
<a href="#" target="_blank">Edit Content</a> |
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
<a href="{{ edit_url }}" target="_blank">Edit Content</a> |
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
{{ if logged_in }} | |
<a href="{{ edit_url }}" target="_blank">Edit Content</a> | |
{{ /if }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment