diff --git a/app/router.coffee b/app/router.coffee index 3ba758b5..fa73d98e 100644 --- a/app/router.coffee +++ b/app/router.coffee @@ -69,7 +69,7 @@ Router.map -> @route 'home-pro', path: '/home-pro' @route 'plans', path: '/plans' @route 'team', path: '/team' - @route 'logos', path: '/logo' + @route 'logo', path: '/logo' @resource 'profile', path: '/profile', -> @resource 'accounts', path: '/', -> diff --git a/app/routes/logo.coffee b/app/routes/logo.coffee new file mode 100644 index 00000000..c09424b6 --- /dev/null +++ b/app/routes/logo.coffee @@ -0,0 +1,7 @@ +`import Ember from 'ember'` +`import TravisRoute from 'travis/routes/basic'` + +Route = TravisRoute.extend + needsAuth: false + +`export default Route` diff --git a/app/templates/logo.hbs b/app/templates/logo.hbs new file mode 100644 index 00000000..855a5eae --- /dev/null +++ b/app/templates/logo.hbs @@ -0,0 +1,22 @@ +
+
+
+
+

So, you wanna use our logo?

+

That's no problem at all!
But first, let's go over some basics on how to use it. +

+
+

The Travis CI wordmark combines the Travis CI mascot with the words “Travis CI” with a specific font and spacing treatment, creating a recognizable logo. This logo or wordmark is used online and in print for; product website, sponsored conference materials, invoices, emails, and other official business uses. You may also use the wordmark in other materials such as presentations mentioning Travis CI, conferences we are sponsoring and other partnerships.

+

Approved official Travis CI logos are available to download in high and low res (.eps, .png) below. If you have questions about using our logo, please email support@travis-ci.com.

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