You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by uc...@apache.org on 2016/04/04 10:43:00 UTC

[11/11] flink git commit: [docs] Add top-nav link to concepts

[docs] Add top-nav link to concepts


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/2de3626c
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/2de3626c
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/2de3626c

Branch: refs/heads/release-1.0
Commit: 2de3626cdb80f58bff578cb3088077acb3850c75
Parents: cbb2e00
Author: Ufuk Celebi <uc...@apache.org>
Authored: Mon Apr 4 10:39:02 2016 +0200
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Mon Apr 4 10:42:08 2016 +0200

----------------------------------------------------------------------
 docs/_includes/navbar.html | 6 ++++--
 docs/index.md              | 2 ++
 2 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/2de3626c/docs/_includes/navbar.html
----------------------------------------------------------------------
diff --git a/docs/_includes/navbar.html b/docs/_includes/navbar.html
index a915d8d..d69ba6e 100644
--- a/docs/_includes/navbar.html
+++ b/docs/_includes/navbar.html
@@ -39,7 +39,9 @@ under the License.
         <!-- The navigation links. -->
         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
           <ul class="nav navbar-nav">
-            <li class="hidden-sm {% if page.url == '/' %}active{% endif %}"><a href="{{ site.baseurl}}/">Documentation {{ site.version_short }}</a></li>
+            <li class="hidden-sm {% if page.url == '/' %}active{% endif %}"><a href="{{ site.baseurl}}/">Docs v{{ site.version_short }}</a></li>
+
+            <li class="{% if page.url == '/concepts/concepts.html' %}active{% endif %}"><a href="{{ site.baseurl}}/concepts/concepts.html">Concepts</a></li>
 
             <!-- Quickstart -->
             <li class="dropdown{% if page.url contains '/quickstart/' %} active{% endif %}">
@@ -82,7 +84,7 @@ under the License.
             </li>
 
             <!-- Libraries -->
-            <li class="dropdown{% if page.url contains '/libs/' %} active{% endif %}">
+            <li class="dropdown{% if page.url contains '/libs/' %} active{% endif %} hidden-sm">
               <a href="{{ libs }}" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Libraries <span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   {% assign libs_group = (site.pages | where: "top-nav-group" , "libs" | sort: "top-nav-pos") %}

http://git-wip-us.apache.org/repos/asf/flink/blob/2de3626c/docs/index.md
----------------------------------------------------------------------
diff --git a/docs/index.md b/docs/index.md
index 875d3ca..8360873 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -26,6 +26,8 @@ Apache Flink is an open source platform for distributed stream and batch data pr
 
 ## First Steps
 
+- **Concepts**: Start with the [basic concepts]({{ site.baseurl }}/concepts/concepts.html) of Flink. This will help you to fully understand the other parts of the documentation, including the setup and programming guides. It is highly recommended to read this first.
+
 - **Quickstarts**: [Run an example program](quickstart/setup_quickstart.html) on your local machine or [write a simple program](quickstart/run_example_quickstart.html) working on live Wikipedia edits.
 
 - **Setup:** The [local]({{ site.baseurl }}/setup/local_setup.html), [cluster](setup/cluster_setup.html), and [cloud](setup/gce_setup.html) setup guides show you how to deploy Flink.