Sha256: c63fcb6211d48401be374403e679a7c2ce63a72cb191e7d8613114860992220e
Contents?: true
Size: 732 Bytes
Versions: 2
Compression:
Stored size: 732 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 subscribed? %> <p>You are subscribed.</p> <p><%= link_to "Unsubscribe", unsubscribe_url %></p> <% else %> <p>You are unsubscribed.</p> <p><%= link_to "Resubscribe", subscribe_url %></p> <% end %> </div> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mailkick-0.0.2 | app/views/mailkick/subscriptions/show.html.erb |
mailkick-0.0.1 | app/views/mailkick/subscriptions/show.html.erb |