diff --git a/website/source/assets/stylesheets/_docs.scss b/website/source/assets/stylesheets/_docs.scss index ccbbf2135..03b80da36 100755 --- a/website/source/assets/stylesheets/_docs.scss +++ b/website/source/assets/stylesheets/_docs.scss @@ -73,3 +73,20 @@ } } } + +#docs-tiles { + display: grid; + grid-template-columns: auto auto auto; + grid-column-gap: 2em; + + .docs-tiles-tile { + border: 1px solid lightgray; + border-radius: 3px; + box-shadow: 0px 4px 8px rgba(0, 0, 0, .05); + padding: 0 40px; + + h3 { + margin-top: 25px; + } + } +} diff --git a/website/source/docs/index.html.erb b/website/source/docs/index.html.erb new file mode 100644 index 000000000..e0a928ed0 --- /dev/null +++ b/website/source/docs/index.html.erb @@ -0,0 +1,39 @@ +--- +layout: "docs" +page_title: "Documentation" +sidebar_current: "docs-home" +description: |- + Welcome to the Consul documentation! This documentation is reference material for all available features and options of Consul. +--- + +

Consul Documentation

+ +

Welcome to the Consul documentation! The documentation is reference +material for all available features and options of Consul.

+ +

In the Quick Links below, you will find the most commonly used documentation +and a link to our guides that walk you through common tasks. Note, the +guides are located on the HashiCorp Learn site. + +

Quick Links

+ +
+
+

Install

+ +

Follow the documentation to install + Consul either with a precompiled binary or from source.

+
+
+

Configure

+ +

Read more about the configuration options + for Consul servers and clients.

+
+
+

Learn

+ +

Get started using Consul with our step-by-step guides at + HashiCorp Learn.

+
+
diff --git a/website/source/docs/index.html.md b/website/source/docs/index.html.md deleted file mode 100644 index d0be08c74..000000000 --- a/website/source/docs/index.html.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: "docs" -page_title: "Documentation" -sidebar_current: "docs-home" -description: |- - Welcome to the Consul documentation! This documentation is more of a reference guide for all available features and options of Consul. If you're just getting started with Consul, please start with the introduction and getting started guide instead. ---- - -# Consul Documentation - -Welcome to the Consul documentation! This documentation is more of a reference -guide for all available features and options of Consul. If you're just getting -started with Consul, please start with the -[introduction and getting started guide](/intro/index.html) instead.