Sha256: c4b6977bad12166adb2e3f87e07f5397598131c04498b73d4e4a138d132b064c
Contents?: true
Size: 731 Bytes
Versions: 19
Compression:
Stored size: 731 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Subscriptions</title> <style> body { padding: 20px; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; font-size: 14px; line-height: 1.4; } a { color: blue; } .container { max-width: 500px; margin-left: auto; margin-right: auto; } </style> </head> <body> <div class="container"> <% if opted_out? %> <p>You are unsubscribed.</p> <p><%= link_to "Resubscribe", subscribe_url %></p> <% else %> <p>You are subscribed.</p> <p><%= link_to "Unsubscribe", unsubscribe_url %></p> <% end %> </div> </body> </html>
Version data entries
19 entries across 19 versions & 1 rubygems