| ... | in unsubscribe.naml |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<macro name="unsubscribe" requires="servlet">
<n.node_page.>
<n.if.is_submitted_form>
<then>
<n.if.equal value1="remove-subscription" value2="[n.action_parameter/]">
<then>
<n.if.page_node.visitor_is_subscribed>
<then.page_node.visitor_subscription.remove/>
</n.if.page_node.visitor_is_subscribed>
<n.redirect_to.subscription_removed_url/>
</then>
</n.if.equal>
</then>
</n.if.is_submitted_form>
<n.html>
<head>
<meta name="robots" content="noindex,nofollow"/>
<n.title.><t>Unsubscribe</t></n.title.>
<n.main_title_css/>
</head>
<body>
<n.visitor.profile_header/>
<div class="shaded-bg-color rounded second-font main-title">
<t>Remove Subscription</t>
</div>
<div style="font-weight:bold;margin: 2em 0 1em">
<t>Do you really want to unsubscribe from <t.location><a href="[n.page_node.url/]"><n.page_node.subject/></a></t.location>?</t>
</div>
<n.unsubscription_form/>
</body>
</n.html>
</n.node_page.>
</macro>
|
| Free forum by Nabble | Edit this page |