From 701c683bff5b0489c70258493e605c7da9efc1f6 Mon Sep 17 00:00:00 2001 From: Lisa P Date: Wed, 28 Oct 2015 17:01:08 +0100 Subject: [PATCH] write markup for pricing page --- app/router.coffee | 1 + app/templates/pricing.hbs | 131 ++++++++++++++++++++++++++++++++++++++ app/views/pricing.coffee | 8 +++ 3 files changed, 140 insertions(+) create mode 100644 app/templates/pricing.hbs create mode 100644 app/views/pricing.coffee diff --git a/app/router.coffee b/app/router.coffee index 9f632b00..4690e20e 100644 --- a/app/router.coffee +++ b/app/router.coffee @@ -67,6 +67,7 @@ Router.map -> @route 'home' @route 'home-pro', path: '/home-pro' + @route 'pricing', path: '/pricing' @resource 'profile', path: '/profile', -> @resource 'accounts', path: '/', -> diff --git a/app/templates/pricing.hbs b/app/templates/pricing.hbs new file mode 100644 index 00000000..1c0ba143 --- /dev/null +++ b/app/templates/pricing.hbs @@ -0,0 +1,131 @@ +
+
+
+

Always free for open source projects!

+

Set up your first project in just one minute.
+ Your first 100 builds are free! No credit card required. +

+
    +
  • +

    Open Source

    +
    +
    Free
    +
    always
    +
    +
      +
    • Fair use
    • +
    • Ulimited build minutes
    • +
    • Unlimited repositories
    • +
    • Unlimited collaborators
    • +
    + +
  • +
  • +

    Startup

    +
    +
    $129
    +
    per month
    +
    +
      +
    • Concurrent jobs
    • +
    • Ulimited build minutes
    • +
    • Unlimited repositories
    • +
    • Unlimited collaborators
    • +
    + +
  • +
  • +

    Small Business

    +
    +
    $249
    +
    per month
    +
    +
      +
    • Concurrent jobs
    • +
    • Ulimited build minutes
    • +
    • Unlimited repositories
    • +
    • Unlimited collaborators
    • +
    + +
  • +
  • +

    Premium

    +
    +
    $489
    +
    per month
    +
    +
      +
    • Concurrent jobs
    • +
    • Ulimited build minutes
    • +
    • Unlimited repositories
    • +
    • Unlimited collaborators
    • +
    + +
  • +
+

In need of a bigger plan? Get in touch
and we'll help get that started!

+
+
+
+
+
+

Interested in using Travis CI on-site?

+

We offer an Enterprise plan for companies who want to keep using the same features of Travis CI with additional on-site security needs. Learn more about Travis CI Enterprise.

+
+
+ +
+
+
+
+
+

Frequently asked questions about Travis CI plans

+
    +
  • +

    What is a concurrent job?

    +

    Every commit triggers a single job by default. If two commits have been pushed on the Startup plan, they'll be run right away. Subsequent commits have to wait until the builds finished.

    +
  • +
  • +

    Are there any restrictions on build time?

    +

    A build has 120 minutes to run. Should your build take longer, you can split it up using a build matrix.

    +
  • +
  • +

    Can I cancel anytime?

    +

    Absolutely! Contact us and we'll make sure your subscription gets cancelled as you want.

    +
  • +
  • +

    Do the listed prices include VAT?

    +

    Prices listed are excluding VAT, which will be added depending on origin (Germany and Europe). Make sure to have your company's VAT ID ready when entering billing details to remove VAT!

    +
  • +
  • +

    What hardware are my tests running on?

    +

    We use dedicated hardware to ensure full speed for your tests. You have 3GB of memory and up to 2 cores available. Your tests are running directly off SSDs with the most common databases optimized to run off RAM disks.

    +
  • +
  • +

    Can I pay anually?

    +

    You most certainly can! When signing up for a subscription, simply select the annual option. You get 1 month for free — 12 months for the price of 11!

    +
  • +
  • +

    Am I able to upgrade my plan?

    +

    Yes, you can change your plan subscription at any time.

    +
  • +
  • +

    How does the trial work?

    +

    Your free trial includes 100 builds and starts as soon as you set up your first project and push a commit. The trial is limitedj to one concurrent build.

    +
  • +
  • +

    Do you have plans for student?

    +

    We most certainly do! You can find all details on education.travis-ci.com

    +
  • +
+
+
+
\ No newline at end of file diff --git a/app/views/pricing.coffee b/app/views/pricing.coffee new file mode 100644 index 00000000..a55ab739 --- /dev/null +++ b/app/views/pricing.coffee @@ -0,0 +1,8 @@ +`import BasicView from 'travis/views/basic'` + +View = BasicView.extend + + classNames: ['landing-pro'] + layoutName: 'layouts/landing-page' + +`export default View`