This repository has been archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(documentation): added collection sorting, fallback for api, rena…
…med package to include url, added quickstart, extracted home template from toolchain
- Loading branch information
Showing
11 changed files
with
108 additions
and
73 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
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
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
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,15 @@ | ||
--- | ||
title: Quick Start | ||
date: 2016-06-02 | ||
collection: guide | ||
layout: guide.hbs | ||
----------------- | ||
|
||
## Installation | ||
```bash | ||
git clone https://github.com/ubiquits/ubiquits.git \ | ||
&& rm -rf .git \ | ||
&& git init \ | ||
&& npm i \ | ||
&& u watch | ||
``` |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
--- | ||
layout: home.hbs | ||
---------------- | ||
|
||
## Welcome... | ||
--- |
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
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
This file was deleted.
Oops, something went wrong.
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,62 @@ | ||
{{> head }} | ||
{{> header }} | ||
<main> | ||
|
||
<div id="index-banner" class="parallax-container"> | ||
<div class="section no-pad-bot"> | ||
<div class="container"> | ||
<br><br> | ||
<h1 class="header center grey-text text-lighten-2">{{ title }}</h1> | ||
<div class="row center"> | ||
<h5 class="header col s12 light">{{ description }}</h5> | ||
</div> | ||
<div class="row center"> | ||
<a href="http://materializecss.com/getting-started.html" id="download-button" class="btn-large waves-effect waves-light grey lighten-1">Get Started</a> | ||
</div> | ||
<br><br> | ||
|
||
</div> | ||
</div> | ||
<div class="parallax"><img src="/assets/img/background1.jpg" alt="Unsplashed background img 1"></div> | ||
</div> | ||
|
||
|
||
<div class="container"> | ||
<div class="section"> | ||
|
||
<!-- Icon Section --> | ||
<div class="row"> | ||
<div class="col s12 m4"> | ||
<div class="icon-block"> | ||
<h2 class="center brown-text"><i class="material-icons">flash_on</i></h2> | ||
<h5 class="center">Speeds up development</h5> | ||
|
||
<p class="light">We did most of the heavy lifting for you to provide a default stylings that incorporate our custom components. Additionally, we refined animations and transitions to provide a smoother experience for developers.</p> | ||
</div> | ||
</div> | ||
|
||
<div class="col s12 m4"> | ||
<div class="icon-block"> | ||
<h2 class="center brown-text"><i class="material-icons">group</i></h2> | ||
<h5 class="center">User Experience Focused</h5> | ||
|
||
<p class="light">By utilizing elements and principles of Material Design, we were able to create a framework that incorporates components and animations that provide more feedback to users. Additionally, a single underlying responsive system across all platforms allow for a more unified user experience.</p> | ||
</div> | ||
</div> | ||
|
||
<div class="col s12 m4"> | ||
<div class="icon-block"> | ||
<h2 class="center brown-text"><i class="material-icons">settings</i></h2> | ||
<h5 class="center">Easy to work with</h5> | ||
|
||
<p class="light">We have provided detailed documentation as well as specific code examples to help new users get started. We are also always open to feedback and can answer any questions a user may have about Materialize.</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
</main> | ||
|
||
{{> footer }} |
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
{{> head }} | ||
{{> header }} | ||
|
||
{{> test }} | ||
|
||
{{{ contents }}} | ||
<main> | ||
<div class="container"> | ||
<h1>{{ title }}</h1> | ||
<time>{{ date }}</time> | ||
{{{ contents }}} | ||
</div> | ||
</main> | ||
|
||
{{> footer }} |
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 |
---|---|---|
|
@@ -19,7 +19,11 @@ | |
"keywords": [ | ||
"ubiquits" | ||
], | ||
"author": "Zak Henry", | ||
"author": { | ||
"name" : "Zak Henry", | ||
"email" : "[email protected]", | ||
"url" : "http://twitter.com/zak" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/ubiquits/core/issues" | ||
|
@@ -51,4 +55,4 @@ | |
"@ubiquits/toolchain": "0.0.8", | ||
"greenkeeper-postpublish": "^1.0.0" | ||
} | ||
} | ||
} |