Memberships: Hidden Sections

With memberr memberships it is possible to create hidden sections in your store that are only available to customers that have a certain membership. The code below serves as a starting point to create such a section.
Liquid Code
_13<div class="hidden-membership-container">_13 {% unless customer %}_13 <div class="logged-out-message">_13 <p>Please login to see your personal information.</p>_13 <div class="login-buttons">_13 <a href="{{ routes.account_login_url }}" class="btn-login">Login</a>_13 <a href="{{ routes.account_register_url }}" class="btn-register">Register</a>_13 </div>_13 </div>_13 {% else %}_13 display hidden customer information here_13 {% endunless %}_13</div>