Created
September 2, 2016 14:26
-
-
Save ikwattro/33683ddf43bbabd8bb062b17cb1e91ae to your computer and use it in GitHub Desktop.
guide test
This file contains hidden or 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
| <article class="guide"> | |
| <carousel class="deck container-fluid"> | |
| <slide class="row-fluid"> | |
| <div class="col-sm-3"> | |
| <h3>Title one</h3> | |
| <p class="lead">First lead</p> | |
| </div> | |
| <div class="col-sm-9"> | |
| <p>This is the content in the main column.</p> | |
| <ol class="big"> | |
| <li>Load: create data from external CSV files</li> | |
| <li>Index: index nodes based on label</li> | |
| <li>Relate: transform foreign key references into data relationships</li> | |
| <li>Promote: transform join records into relationships</li> | |
| </ol> | |
| </div> | |
| </slide> | |
| <slide class="row-fluid"> | |
| <div class="col-sm-3"> | |
| <h3>Title two</h3> | |
| <p class="lead">Second lead</p> | |
| </div> | |
| <div class="col-sm-9"> | |
| <figure> | |
| <pre class="pre-scrollable code runnable">CREATE INDEX ON :Product(productID)</pre> | |
| <figcaption>Find the produce suppliers.</figcaption> | |
| </figure> | |
| <figure> | |
| <pre class="pre-scrollable code runnable">CREATE INDEX ON :Category(categoryID)</pre> | |
| </figure> | |
| <figure> | |
| <pre class="pre-scrollable code runnable">CREATE INDEX ON :Supplier(supplierID)</pre> | |
| </figure> | |
| <h3>More code</h3> | |
| <ul class="undecorated"> | |
| <li><a play-topic="movie-graph">Movie Graph</a> - actors & movies</li> | |
| <li><a play-topic="query-template">Query Templates</a> - common ad-hoc queries</li> | |
| <li><a play-topic="cypher">Cypher</a> - query language fundamentals</li> | |
| </ul> | |
| </div> | |
| </slide> | |
| </carousel> | |
| </article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment