-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex Cabrera
committed
May 28, 2015
0 parents
commit 6279e2f
Showing
10 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.DS_Store | ||
.api-cache/* | ||
.dist/* | ||
node_modules/* | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Colors | ||
$palette-white : #fff | ||
$palette-black : #000 | ||
$palette-light_gray : #BBB | ||
$palette-gray : #777 | ||
$palette-dark_gray : #333 | ||
|
||
|
||
// Fonts | ||
$font-stack-sans_serif : "Helvetica", "Verdana", sans-serif | ||
$font-stack-serif : "Georgia", "Times New Roman", serif | ||
$font-stack-monospace : "Menlo", "Courier", monospace |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.debug 'script.coffee' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Core Marquee helpers | ||
@import "marquee" | ||
|
||
// Marquee styles that generate classes | ||
@import "marquee/classes" | ||
|
||
// Variable definitions shared across the project | ||
@import "_config.sass" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
React = require 'react' | ||
Home = require './views/Home.cjsx' | ||
|
||
module.exports = ({ emitFile, done }) -> | ||
emitFile('index.html', <Home />) | ||
done() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "marquee-sdk-example", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "./main.cjsx", | ||
"scripts": { | ||
"build": "npm install && ./node_modules/.bin/marqueestatic build --verbose", | ||
"develop": "npm install && ./node_modules/.bin/marqueestatic develop --verbose --use-cache", | ||
"deploy": "npm install && ./node_modules/.bin/marqueestatic deploy --verbose" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"marquee": { | ||
"CONTENT_API_TOKEN": "r0_82144e3af0db217e277bda4e9fa160ee36ba2bef", | ||
"CONTENT_API_HOST": "api.marquee.by", | ||
"HOST": "example.org" | ||
}, | ||
"devDependencies": { | ||
"marquee-static-sdk": "^0.4.0-alpha.4" | ||
}, | ||
"dependencies": { | ||
"react": "^0.12.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
React = require 'react' | ||
Base = require './_Base.cjsx' | ||
|
||
module.exports = React.createClass | ||
displayName: 'Home' | ||
render: -> | ||
|
||
<Base> | ||
<p>You are all set to get started with the Marquee SDK.</p> | ||
</Base> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
React = require 'react' | ||
|
||
Asset = require 'marquee-static-sdk/base/Asset' | ||
Favicon = require 'marquee-static-sdk/base/Favicon' | ||
|
||
module.exports = React.createClass | ||
displayName: 'Base' | ||
render: -> | ||
|
||
<html> | ||
<head> | ||
<title>Marquee SDK Example</title> | ||
|
||
<Favicon name='images/favicon.ico' /> | ||
<Asset path='style.sass' /> | ||
</head> | ||
<body> | ||
{@props.children} | ||
|
||
<Asset path='script.coffee' /> | ||
</body> | ||
</html> |