From b350414ae6119f3fb2ad23bd6b3db92aed5ef638 Mon Sep 17 00:00:00 2001 From: Lisa P Date: Wed, 21 Oct 2015 12:13:30 +0200 Subject: [PATCH] prepare markup for pro landing page --- app/router.coffee | 2 + app/templates/home-pro.hbs | 91 ++++++++++++++++++++++++++++++++++++++ app/views/home-pro.coffee | 6 +++ 3 files changed, 99 insertions(+) create mode 100644 app/templates/home-pro.hbs create mode 100644 app/views/home-pro.coffee diff --git a/app/router.coffee b/app/router.coffee index 7b4d336b..9f632b00 100644 --- a/app/router.coffee +++ b/app/router.coffee @@ -66,6 +66,8 @@ Router.map -> @route 'auth' @route 'home' + @route 'home-pro', path: '/home-pro' + @resource 'profile', path: '/profile', -> @resource 'accounts', path: '/', -> @resource 'account', path: '/:login' diff --git a/app/templates/home-pro.hbs b/app/templates/home-pro.hbs new file mode 100644 index 00000000..4fff878f --- /dev/null +++ b/app/templates/home-pro.hbs @@ -0,0 +1,91 @@ +
+
+
+
+

Builds apps
with confidence

+

Focus on writing code. Let Travis CI take care
of running your tests and deploying your apps.

+ Start your free trial +
+
+ computer +
+
+
+
+
+

Some pretty awesome companies and projects are a few of our users

+ +
+
+
+
+
+
    +
  • + GH +

    Get set up in seconds

    +

    Login with GitHub, tell Travis CI to test a project, and then push to GitHub. Could it be any simpler!

    +
  • +
  • + DB +

    Supports your platform

    +

    Many databases and services are pre-installed and can be enabled in your build configuration.

    +
  • +
  • + PR +

    Test your pull requests

    +

    Make sure every Pull Request to your project is tested before it's merged.

    +
  • +
  • + HEROKU +

    Deploy anywhere

    +

    Updating staging or production as soon as your tests pass has never been easier!

    +
  • +
+
+
+

Features created to help your projects and teams

+
    +
  • Watch your tests as they run
  • +
  • Keep your config with your code
  • +
  • Slack, HipChat, Emails and more
  • +
  • A clean VM for every build
  • +
  • Run your tests in parallel
  • +
  • Linux and Mac (and iOS) supported
  • +
  • Great API and command line tool
  • +
+
+
+
+
+
+

Supported languages

+

These are just a few of our most popular languages, check out the full list in our docs.

+
    +
  • Clojure
  • +
  • Node
  • +
  • PHP
  • +
  • XCode
  • +
  • Ruby
  • +
  • Python
  • +
  • Java
  • +
  • Erlang
  • +
  • Go
  • +
  • Scala
  • +
  • Perl
  • +
+
+
+
+
+

Interested in running your
private projects with Travis CI?

+ Start your free trial +
+
+
\ No newline at end of file diff --git a/app/views/home-pro.coffee b/app/views/home-pro.coffee new file mode 100644 index 00000000..06446f76 --- /dev/null +++ b/app/views/home-pro.coffee @@ -0,0 +1,6 @@ +`import BasicView from 'travis/views/basic'` + +View = BasicView.extend + layoutName: 'layouts/landing-page' + +`export default View`