Skip to content

Commit

Permalink
chore: noreferrer for listmonk url in footer (#1601)
Browse files Browse the repository at this point in the history
* chore: noreferrer for listmonk url in footer

* chore: noreferrer for email templates
  • Loading branch information
relikd committed Nov 23, 2023
1 parent 524be27 commit 52ee79b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion static/email-templates/base.html
Expand Up @@ -90,7 +90,7 @@
</div>

<div class="footer">
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank">listmonk</a></p>
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" rel="noreferrer">listmonk</a></p>
</div>
<div class="gutter">&nbsp;</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion static/email-templates/default-archive.tpl
Expand Up @@ -92,7 +92,7 @@
</div>

<div class="footer" style="text-align: center;font-size: 12px;color: #888;">
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" style="color: #888;">listmonk</a></p>
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" rel="noreferrer" style="color: #888;">listmonk</a></p>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion static/email-templates/default.tpl
Expand Up @@ -97,7 +97,7 @@
<a href="{{ UnsubscribeURL }}" style="color: #888;">{{ L.T "email.unsub" }}</a>
<a href="{{ MessageURL }}" style="color: #888;">{{ L.T "email.viewInBrowser" }}</a>
</p>
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" style="color: #888;">listmonk</a></p>
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" rel="noreferrer" style="color: #888;">listmonk</a></p>
</div>
<div class="gutter" style="padding: 30px;">&nbsp;{{ TrackView }}</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion static/email-templates/sample-tx.tpl
Expand Up @@ -102,7 +102,7 @@
</div>

<div class="footer" style="text-align: center;font-size: 12px;color: #888;">
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" style="color: #888;">listmonk</a></p>
<p>{{ L.T "public.poweredBy" }} <a href="https://listmonk.app" target="_blank" rel="noreferrer" style="color: #888;">listmonk</a></p>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion static/public/templates/index.html
Expand Up @@ -41,7 +41,7 @@
</div>

<footer class="container">
{{ L.T "public.poweredBy" }} <a target="_blank" href="https://listmonk.app">listmonk</a>
{{ L.T "public.poweredBy" }} <a target="_blank" rel="noreferrer" href="https://listmonk.app">listmonk</a>
</footer>
</body>
</html>
Expand Down

0 comments on commit 52ee79b

Please sign in to comment.