You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/10/22 16:28:00 UTC

tinkerpop git commit: Fixed broken carosel - dah

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1485 bea5482b5 -> 8636bdfa7


Fixed broken carosel - dah


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/8636bdfa
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/8636bdfa
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/8636bdfa

Branch: refs/heads/TINKERPOP-1485
Commit: 8636bdfa7604ceadea6768c2f74d0339a35dd710
Parents: bea5482
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Sat Oct 22 12:19:34 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Sat Oct 22 12:19:34 2016 -0400

----------------------------------------------------------------------
 site/home/index.html | 35 ++++++++++++++++++++++-------------
 1 file changed, 22 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/8636bdfa/site/home/index.html
----------------------------------------------------------------------
diff --git a/site/home/index.html b/site/home/index.html
index 0305140..9777271 100644
--- a/site/home/index.html
+++ b/site/home/index.html
@@ -72,8 +72,17 @@ limitations under the License.
       </div>
    </div>
    <div><br/></div>
-   <div class="carousel-inner" role="listbox">
-      <div class="item active">
+   <div id="gremlinCarousel" class="carousel slide" data-ride="carousel" data-interval="30000" border="none">
+      <!-- Indicators -->
+      <ol class="carousel-indicators carousel-indicators-numbers">
+         <li data-target="#gremlinCarousel" data-slide-to="0" class="active">1</li>
+         <li data-target="#gremlinCarousel" data-slide-to="1">2</li>
+         <li data-target="#gremlinCarousel" data-slide-to="2">3</li>
+         <li data-target="#gremlinCarousel" data-slide-to="3">4</li>
+         <li data-target="#gremlinCarousel" data-slide-to="4">5</li>
+      </ol>
+      <div class="carousel-inner" role="listbox">
+         <div class="item active">
                   <pre><code class="language-gremlin">
 
 
@@ -83,8 +92,8 @@ limitations under the License.
 
 
           </code></pre>
-      </div>
-      <div class="item">
+         </div>
+         <div class="item">
                   <pre><code class="language-gremlin">
     // What are the names of projects that were created by two friends?
     g.V().match(
@@ -94,8 +103,8 @@ limitations under the License.
       as("c").in("created").count().is(2)).
         select("c").by("name")
           </code></pre>
-      </div>
-      <div class="item">
+         </div>
+         <div class="item">
                   <pre><code class="language-gremlin">
 
     // What are the names of the managers in
@@ -105,8 +114,8 @@ limitations under the License.
       path().by("name")
 
           </code></pre>
-      </div>
-      <div class="item">
+         </div>
+         <div class="item">
                   <pre><code class="language-gremlin">
 
     // What is the distribution of job titles amongst Gremlin's collaborators?
@@ -116,8 +125,8 @@ limitations under the License.
       groupCount().by("title")
 
           </code></pre>
-      </div>
-      <div class="item">
+         </div>
+         <div class="item">
                   <pre><code class="language-gremlin">
 
     // Get a ranking of the most relevant products for Gremlin given his purchase history.
@@ -127,11 +136,11 @@ limitations under the License.
       groupCount().
         order(local).by(values,decr)
           </code></pre>
+         </div>
       </div>
    </div>
-</div>
-<!-- /.carousel -->
-<div class="container">
+   <!-- /.carousel -->
+   <div class="container">
       <h3>The Benefits of Graph Computing</h3>
       <p><img src="images/graph-globe.png" style="float:left;width:15%;padding:10px;"> A <strong>graph</strong> is a structure composed of <strong>vertices</strong> and <strong>edges</strong>.
          Both vertices and edges can have an arbitrary number of key/value-pairs called <strong>properties</strong>.