blob: 5713f6509ecc0731f22b6da18c6a6697db9c9645 (
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
|
<div class="ph2">
<!-- Title -->
<h3 class="b f5 grey-3 tc lh-title mb3">{{.plan}}</h3>
<!-- Price -->
<p class="primary f1 b tc lh-title center">
<span class="f4">$</span>{{.price}}
</p>
<!-- Description -->
<p class="b">{{.description}}</p>
<!-- Features -->
<ul>
<li>
<p class="pb2 mb2 divider-grey">{{.item1}}</p>
</li>
<li>
<p class="pb2 mb2 divider-grey">{{.item2}}</p>
</li>
<li>
<p>{{.item3}}</p>
</li>
</ul>
</div>
|