blob: 95b8d2fd3af9c2b66c7d2e14eedf52687b9e1a78 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<ul id="plans">
<li class="most-popular">
<div class="top">
<h2>[[- plans.pro.name ]]</h2>
<h3><span class="dollar">$</span><span class="price large">[[- plans.pro.monthly_price ]]</span> <span class="month large">/ mo </span></h3>
<h4>Ideal for large galleries<br>and small businesses.</h4>
</div>
<ul>
<li>
[[- plans.pro.pro_layout_limit ]] Pro Floor Plans and [[- plans.pro.pro_project_limit ]] Exhibitions
</li>
<li>
Trace a Floor Plan from a Drawing
</li>
<li>
Image Hosting For Artworks
</li>
<li>
Planning for 3D Objects
</li>
<li>
Everything the Medium Plan Contains
</li>
<li>
No Branding!
</li>
</ul>
<div class="signup">
[[ if (! logged_in) { ]]
<a class="button" href="#" data-role="show-signup-modal">Sign Up for [[- plans.pro.name ]]</a>
[[ } else if (! user.plan_level || user.plan_level < plans.pro.level) { ]]
<a class="button" href="https://vvalls.recurly.com/subscribe/pro-monthly/[[- user._id ]]/[[- user.username ]]">Sign Up for [[- plans.pro.name ]]</a>
[[ } else if (user.plan_level == plans.pro.level) { ]]
<div class="current">Current Level</div>
[[ } ]]
</div>
</li>
<li>
<div class="top">
<h2>[[- plans.basic.name ]]</h2>
<h3><span class="dollar">$</span><span class="price medium">[[- plans.basic.monthly_price ]]</span> <span class="month medium">/ mo </span></h3>
<h4>Great for small galleries<br>and art projects.</h4>
</div>
<ul>
<li>
[[- plans.basic.basic_layout_limit ]] Basic Floor Plan and [[- plans.basic.basic_project_limit ]] Exhibitions
</li>
<li>
Add More Basic Floor Plans for $[[- plans.basic.basic_layout_monthly_price ]]/mo
</li>
<li>
Invite Artists to Collaborate
</li>
<li>
Prepay a Year and Get Two Months Free
</li>
<li>
Everything the Small Plan Contains
</li>
<li>
VValls Branding
</li>
</ul>
<div class="signup">
[[ if (! logged_in) { ]]
<a class="button" href="#" data-role="show-signup-modal">Sign Up for [[- plans.basic.name ]]</a>
[[ } else if (! user.plan_level || user.plan_level < plans.basic.level) { ]]
<a class="button" href="https://vvalls.recurly.com/subscribe/basic-monthly/[[- user._id ]]/[[- user.username ]]">Sign Up for [[- plans.basic.name ]]</a>
[[ } else if (user.plan_level == plans.basic.level) { ]]
<div class="current">Current Level</div>
[[ } else { ]]
<div class="current"> </div>
[[ } ]]
</div>
</li>
<li>
<div class="top">
<h2>[[- plans.free.name ]]</h2>
<h3><span class="dollar">$</span><span class="price small">0</span> <span class="month small">/ mo </span></h3>
<h4>Free forever.</h4>
</div>
<ul>
<li>
[[- plans.free.stock_project_limit ]] Basic Exhibition
</li>
<li>
Use Any of our Built-In Floor Plans
</li>
<li>
Embed Images and Videos in your Room
</li>
<li>
Custom Color and Wallpaper
</li>
<li>
Embed Room on Your Website
</li>
<li>
VValls Branding
</li>
</ul>
<div class="signup">
[[ if (! logged_in) { ]]
<a class="button" href="#" data-role="show-signup-modal">Sign Up for Small</a>
[[ } else if (! user.plan_level || user.plan_level == plans.free.level) { ]]
<div class="current">Current Level</div>
[[ } else { ]]
<div class="current"> </div>
[[ } ]]
</div>
</li>
</ul>
<br>
<div class="about_custom custombox planbox">
<h3>Want Something Custom?</h3>
<li> We offer customized white-label options for business and educational uses.
<br>
<a href="mailto:hello@vvalls.com">Contact us</a> for more information.
</div>
|