mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Fix: back link on the subscribe page (#7059)
closes #6984 -the backlink had a static href to {{@blog.url}} which is now changed to {{#if subscribed_url}}{{subscribed_url}}{{else}}{{@blog.url}}{{/if}} to reflect the referring url. -This PR makes the back link on the subscribe page to link back to the referring page instead of linking back to /
This commit is contained in:
parent
76808d43b3
commit
9c2d14949d
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
|||
<div class="gh-flow">
|
||||
<header class="gh-flow-head">
|
||||
<nav class="gh-flow-nav">
|
||||
<a href="{{@blog.url}}" class="gh-flow-back"><i class="icon-arrow-left"></i> Back</a>
|
||||
<a href="{{#if subscribed_url}}{{subscribed_url}}{{else}}{{@blog.url}}{{/if}}" class="gh-flow-back"><i class="icon-arrow-left"></i> Back</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
|
Loading…
Reference in a new issue