supporters: Make the new sustainers page live
I've temporarily hidden the quote for now.
This commit is contained in:
parent
ed74990b7c
commit
dc133ff0cd
2 changed files with 4 additions and 3 deletions
|
@ -25,14 +25,16 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="lh-title tc mb0">Become a Sustainer Now</h1>
|
<h1 class="lh-title tc mt4 mb2">Become a Sustainer Now</h1>
|
||||||
<p class="measure-wide center tc">Sustainers help us do our work in a strategic, long-term way.</p>
|
<p class="measure-wide center tc">Sustainers help us do our work in a strategic, long-term way.</p>
|
||||||
|
|
||||||
|
{% comment %}
|
||||||
<div class="f5 measure-wide center tc mv4">
|
<div class="f5 measure-wide center tc mv4">
|
||||||
<p class="mt3 mb0"><em>“If software freedom is important to you, I can't think of a
|
<p class="mt3 mb0"><em>“If software freedom is important to you, I can't think of a
|
||||||
more effective way to use your money than to support Conservancy.”</em></p>
|
more effective way to use your money than to support Conservancy.”</em></p>
|
||||||
<p class="tr">— <strong>Made Up Person</strong></p>
|
<p class="tr">— <strong>Made Up Person</strong></p>
|
||||||
</div>
|
</div>
|
||||||
|
{% endcomment %}
|
||||||
|
|
||||||
<div id="sustainer-grid-wrapper" class="mv4" style="grid-template-columns: 2fr 1fr; gap: 1.5rem">
|
<div id="sustainer-grid-wrapper" class="mv4" style="grid-template-columns: 2fr 1fr; gap: 1.5rem">
|
||||||
<section class="mb4">
|
<section class="mb4">
|
||||||
|
|
|
@ -4,12 +4,11 @@ from django.views.generic import TemplateView
|
||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('', views.sustainers, name='sustainers'),
|
path('', views.sustainers_stripe, name='sustainers'),
|
||||||
path('banner/', TemplateView.as_view(template_name='supporters/banners.html')),
|
path('banner/', TemplateView.as_view(template_name='supporters/banners.html')),
|
||||||
path('banners/', TemplateView.as_view(template_name='supporters/banners.html')),
|
path('banners/', TemplateView.as_view(template_name='supporters/banners.html')),
|
||||||
path('success/', views.success),
|
path('success/', views.success),
|
||||||
path('webhook/', views.webhook),
|
path('webhook/', views.webhook),
|
||||||
# TODO
|
# TODO
|
||||||
path('stripe/', views.sustainers_stripe),
|
|
||||||
path('paypal/', views.sustainers_paypal, name='sustainer_paypal'),
|
path('paypal/', views.sustainers_paypal, name='sustainer_paypal'),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue