mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -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">
|
<div class="gh-flow">
|
||||||
<header class="gh-flow-head">
|
<header class="gh-flow-head">
|
||||||
<nav class="gh-flow-nav">
|
<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>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue