1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/views/public/plans.blade.php

47 lines
1.3 KiB
PHP
Raw Normal View History

2014-04-24 10:46:44 +02:00
@extends('public.header')
@section('content')
2014-05-08 21:19:33 +02:00
<section class="hero background hero-plans" data-speed="2" data-type="background">
2014-05-06 19:54:28 +02:00
<div class="container">
2014-05-08 21:19:33 +02:00
<div class="row">
<h1><img src="{{ asset('images/icon-plans.png') }}"><span class="thin">The</span> plans</h1>
</div>
</div>
</section>
2014-04-25 15:15:13 +02:00
2014-05-08 21:19:33 +02:00
<section class="plans center">
2014-04-25 15:15:13 +02:00
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2>Go Pro to Unlock Premium Invoice Ninja Features</h2>
<p>We believe that the free version of Invoice Ninja is a truly awesome product loaded
with the key features you need to bill your clients electronically. But for those who
crave still more Ninja awesomeness, we've unmasked the Invoice Ninja Pro plan, which
offers more versatility, power and customization options for just $50 per year. </p>
2014-05-08 21:19:33 +02:00
</div>
2014-04-25 15:15:13 +02:00
</div>
</div>
2014-04-26 21:00:31 +02:00
2014-05-08 21:19:33 +02:00
@include('plans')
</div>
</section>
2014-04-25 15:15:13 +02:00
2014-04-30 16:14:11 +02:00
<section class="upper-footer white-bg">
2014-05-08 21:19:33 +02:00
<div class="container">
<div class="row">
<div class="col-md-3 center-block">
<a href="#">
<div class="cta">
<h2 onclick="return getStarted()">Invoice Now <span>+</span></h2>
</div>
</a>
</div>
2014-04-25 15:15:13 +02:00
</div>
</div>
</section>
2014-04-24 10:46:44 +02:00
@stop