From b1de082d7a0fae23b8c0db926da0c66595cc2a97 Mon Sep 17 00:00:00 2001 From: Adela Sofia Arreola Date: Thu, 21 May 2020 11:22:34 -0600 Subject: [PATCH] Added support page --- ...-band.html => community-contrib-band.html} | 23 ------- _includes/header-navigation.html | 3 + _includes/support-help-band.html | 25 ++++++++ _includes/support-options-band.html | 13 ++++ _layouts/community.html | 2 +- _layouts/support.html | 8 +++ _sass/layouts/support.scss | 60 +++++++++++++++++++ _sass/quarkus.scss | 10 ++++ assets/css/main.scss | 1 + support.md | 5 ++ 10 files changed, 126 insertions(+), 24 deletions(-) rename _includes/{community-help-band.html => community-contrib-band.html} (70%) create mode 100644 _includes/support-help-band.html create mode 100644 _includes/support-options-band.html create mode 100644 _layouts/support.html create mode 100644 _sass/layouts/support.scss create mode 100644 support.md diff --git a/_includes/community-help-band.html b/_includes/community-contrib-band.html similarity index 70% rename from _includes/community-help-band.html rename to _includes/community-contrib-band.html index 5ab596d737..4f0745c196 100644 --- a/_includes/community-help-band.html +++ b/_includes/community-contrib-band.html @@ -1,27 +1,4 @@
-
-

Getting Help

-
-
- -

Documentation

-

We have a lot of documentation. Be sure to check our getting started page, and all our guides. Also check out our FAQ section and Quarkus Tips Playlist.

-
-
- -

Stack Overflow

-

Ask your questions on Stack Overflow. After the documentation, it’s probably the best place to look for answers. We actively monitor the Quarkus tag.

-
-
- -

Live Chat

-

If you prefer live chat with the developers, we have a Zulip chat where we all hang out.

-
-
- -

Mailing List

-

You can also ask questions on our mailing list. Join the group via email or by visiting the Google Groups page.

-

Contributing

diff --git a/_includes/header-navigation.html b/_includes/header-navigation.html index 2d081e3e0f..74900d07c4 100755 --- a/_includes/header-navigation.html +++ b/_includes/header-navigation.html @@ -21,6 +21,9 @@
  • Community
  • +
  • + Support +
  • Blog
  • diff --git a/_includes/support-help-band.html b/_includes/support-help-band.html new file mode 100644 index 0000000000..2fe1649de9 --- /dev/null +++ b/_includes/support-help-band.html @@ -0,0 +1,25 @@ +
    +
    +

    Getting Help from the Community

    +
    +
    + +

    Documentation

    +

    We have a lot of documentation. Be sure to check our getting started page, and all our guides. Also check out our FAQ section and Quarkus Tips Playlist.

    +
    +
    + +

    Stack Overflow

    +

    Ask your questions on Stack Overflow. After the documentation, it’s probably the best place to look for answers. We actively monitor the Quarkus tag.

    +
    +
    + +

    Live Chat

    +

    If you prefer live chat with the developers, we have a Zulip chat where we all hang out.

    +
    +
    + +

    Mailing List

    +

    You can also ask questions on our mailing list. Join the group via email or by visiting the Google Groups page.

    +
    +
    diff --git a/_includes/support-options-band.html b/_includes/support-options-band.html new file mode 100644 index 0000000000..da5811ce96 --- /dev/null +++ b/_includes/support-options-band.html @@ -0,0 +1,13 @@ +
    +
    +

    Need More Than Community Support?

    +

    If you require a higher level of support, you have options.

    +
    +
    +

    Red Hat Build of Quarkus

    +

    Enterprise support provided by Red Hat for the product.

    +

    + Red Hat Support +

    +
    +
    diff --git a/_layouts/community.html b/_layouts/community.html index 66d69361ba..05f2bb9e6d 100644 --- a/_layouts/community.html +++ b/_layouts/community.html @@ -3,5 +3,5 @@ ---
    - {% include community-help-band.html %} + {% include community-contrib-band.html %}
    diff --git a/_layouts/support.html b/_layouts/support.html new file mode 100644 index 0000000000..7021a17924 --- /dev/null +++ b/_layouts/support.html @@ -0,0 +1,8 @@ +--- +layout: vision +--- + +
    + {% include support-help-band.html %} + {% include support-options-band.html %} +
    diff --git a/_sass/layouts/support.scss b/_sass/layouts/support.scss new file mode 100644 index 0000000000..16eb00c029 --- /dev/null +++ b/_sass/layouts/support.scss @@ -0,0 +1,60 @@ +.support { + .help-band { + margin: 0; + padding-bottom: 6rem; + .help-block { + text-align: center; + + h3, p { + text-align: left; + } + + h3 { + text-transform: uppercase; + } + h4 { + font-weight: 600; + margin: 1rem 0; + } + + } + } + + .options-band { + margin-top: 0; + + h1, h2, h3 { + text-align: left; + text-transform: uppercase; + } + + .options-block { + border: 1px solid $quarkus-blue; + padding: 2rem; + + h4 { + margin-top: 0; + } + + > p:last-child { + margin-bottom: 0; + } + + > a:only-child { + text-align: left; + font-size: 1.25rem; + line-height: 1.5rem; + } + a > i { + color: inherit; + margin-left: 5px; + } + @media screen and (max-width: 1170px) { + grid-column: span 6; + } + @media screen and (max-width: $breakpoint-m) { + grid-column: span 12; + } + } + } +} diff --git a/_sass/quarkus.scss b/_sass/quarkus.scss index 8eee60c32c..bcf836954b 100644 --- a/_sass/quarkus.scss +++ b/_sass/quarkus.scss @@ -104,6 +104,9 @@ input[type="submit"] { line-height: 2.5; transition: background .2s ease-in 0s; text-decoration: none; + padding: 0 3rem; + display: inline-block; + white-space: normal; &:hover, &:active, &:focus { background-color: $cta-hover; border-color: $cta-hover; @@ -117,6 +120,13 @@ input[type="submit"] { line-height: 1rem; padding: .75rem 0; } + + &.btn-sm { + font-size: 1rem; + line-height: 1.2rem; + font-weight: 400; + padding: .5rem 2rem; + } } a.button-cta.secondary { diff --git a/assets/css/main.scss b/assets/css/main.scss index 1f26259213..1a30d30474 100755 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -38,6 +38,7 @@ $baseurl: "{{ site.baseurl }}"; @import "layouts/extensions"; @import "layouts/community"; @import "layouts/blog"; +@import "layouts/support"; @import "includes/header-navigation"; @import "includes/libraries-standards-band"; @import "includes/homepage-hero-band"; diff --git a/support.md b/support.md new file mode 100644 index 0000000000..9204cfed81 --- /dev/null +++ b/support.md @@ -0,0 +1,5 @@ +--- +layout: support +title: Support When You Need It +permalink: /support/ +---