Last active
November 6, 2015 15:18
-
-
Save jerzyn/9689955 to your computer and use it in GitHub Desktop.
Subscribe and unsubscribe links
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for service in provider.services %} | |
| <div class="service-column"> | |
| <p>{{ service.name }}</p> | |
| <p>{{ service.description }}</p> | |
| {% unless service.subscribed? %} | |
| <a href="{{ urls.signup }}?{{ service | to_param }}">Signup to {{ service.name }}</a> | |
| {% endunless %} | |
| </ div> | |
| {% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment