Blame view

mustache/app/views/pages/partials/pricing/package-small.mustache 983 Bytes
5a739853   patrick.he   commit
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
  <div class="pricing-span">
  	<div class="widget-box pricing-box-small widget-color-{{title-color}}">
  		<div class="widget-header">
  			<h5 class="widget-title bigger lighter">{{title}}</h5>
  		</div>
  		<div class="widget-body">
  		 <div class="widget-main no-padding">
  			<ul class="list-unstyled list-striped pricing-table">
  				{{#values}}
  					<li>
  						{{#available}}{{! if the named feature is available add "OK" icon}}
  						<i class="ace-icon fa fa-check green"></i>
  						{{/available}}
  						{{#unavailable}}{{! if the named feature is not available}}
  						<i class="ace-icon fa fa-times red"></i>
  						{{/unavailable}}
  						{{value}}
  					</li>
  				{{/values}}
  			</ul>
  			
  			<div class="price">
  				<span class="label label-lg label-inverse arrowed-in arrowed-in-right">
  					{{price}}<small>/{{duration}}</small>
  				</span>
  			</div>
  		 </div>
  		 <div>
  			<a href="#" class="btn btn-block btn-sm btn-{{btn-color}}"><span>Buy</span></a>
  		 </div>
  		</div>
  	</div>
  </div>