Make 2.x manual landing page more clear (#262)

* Modify quickstart.md to have a title for the whole 2.x manual
* Add skip_doc_h1 tag to drop the title as the first header so it
can be different than the navigation link
diff --git a/_docs-2/getting-started/quickstart.md b/_docs-2/getting-started/quickstart.md
index db324ab..0fd44db 100644
--- a/_docs-2/getting-started/quickstart.md
+++ b/_docs-2/getting-started/quickstart.md
@@ -1,22 +1,29 @@
 ---
-title: Quick Start
+title: Setup
 category: getting-started
 order: 1
+skip_doc_h1: true
 ---
+# User Manual (2.x)
 
-This quick start provides basic instructions for installing and running Accumulo. For detailed instructions,
-see the [in-depth installation guide][in-depth].
+Starting with Accumulo 2.0, the user manual now lives on the website as a series of web pages. Previously, it was one large 
+pdf document that was only generated during a release. The user manual can now be updated very quickly and indexed 
+for searching across many webpages.
 
-## Consider using automated tools
+The manual can now be 
+searched using the [Search link][search] at the top of the website or navigated by clicking the links to the left. If you are new 
+to Accumulo, follow the instructions below to get started.  For detailed instructions, see the [in-depth installation guide][in-depth].
+
+## Setup for testing or development
 
 If you are setting up Accumulo for **testing or development,** consider using the following tools:
 
 * [Uno] sets up Accumulo on a single machine for development
 * [Muchos] sets up Accumulo on a cluster (optionally launched in Amazon EC2 and Microsoft Azure VM)
 
-If you are setting up Accumulo for a **production** environment, follow the instructions in this quick start.
+If you are setting up Accumulo for a **production** environment, follow the instructions below.
 
-## Install Accumulo
+## Setup for Production
 
 Either [download] or [build] a binary distribution of Accumulo from source code and
 unpack as follows.
@@ -200,6 +207,7 @@
 * Stop Accumulo service: `accumulo-service tserver stop`
 * Stop Accumulo cluster: `accumulo-cluster stop`
 
+[search]: {{ site.baseurl }}/search
 [in-depth]: {% durl administration/in-depth-install %}
 [download]: {{ site.baseurl }}/downloads
 [build]: https://github.com/apache/accumulo/blob/main/README.md#building
diff --git a/_layouts/docs-2.html b/_layouts/docs-2.html
index 5c10475..262d568 100644
--- a/_layouts/docs-2.html
+++ b/_layouts/docs-2.html
@@ -38,10 +38,12 @@
     <p>Accumulo {{ page.version }} Documentation &nbsp;&gt;&gt;&nbsp; {{ page.category | capitalize | replace: "-", " " }} &nbsp;&gt;&gt;&nbsp; {{ page.title }}</p>
     {% endif %}
 
+    {% unless page.skip_doc_h1 %}
     <div class="row">
       <div class="col-md-10"><h1>{{ page.title }}</h1></div>
       <div class="col-md-2"><a class="pull-right" style="margin-top: 25px;" href="https://github.com/apache/accumulo-website/edit/main/{{ page.path }}" role="button"><i class="glyphicon glyphicon-pencil"></i> <small>Edit this page</small></a></div>
     </div>
+    {% endunless %}
 
     {{ content }}