forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combine three super footer elements into one section (github#16724)
* Combine three super footer elements into one section * Update support-section.html * Update heading font sizes
- Loading branch information
Showing
6 changed files
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<section class="mt-lg-9 py-7 px-3 px-md-6 no-print" style="background:#fafbfc"> | ||
<div class="container-xl gutter-lg-spacious clearfix"> | ||
<div class="col-12 col-lg-6 col-xl-4 mb-6 mb-xl-0 float-left"> | ||
{% include helpfulness %} | ||
</div> | ||
<div class="col-12 col-lg-6 col-xl-4 mb-6 mb-xl-0 float-left"> | ||
{% include contribution %} | ||
</div> | ||
<div class="col-12 col-lg-12 col-xl-4 float-left"> | ||
{% include support %} | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
<!-- Contact support banner --> | ||
<section class="mt-lg-9 py-7 no-print js-support-banner" style="background-color: #fafbfc;"> | ||
<div class="container-xl px-3 px-md-6 "> | ||
<h3 class="mb-2 f4"> | ||
{% data ui.support.still_need_help %} | ||
</h3> | ||
{% if currentVersion contains 'enterprise' %}{% assign isEnterprise = true %}{% else %}{% assign isEnterprise = false %}{% endif %} | ||
<a id="ask-community" href="https://github.community" class="btn btn-outline mr-4 mt-2"> | ||
{% octicon "people" width="16" %} | ||
{% data ui.support.ask_community %} | ||
</a> | ||
<a id="contact-us" href="{% unless isEnterprise %}https://support.github.com/contact{% else %}https://enterprise.github.com/support{% endunless %}" class="btn btn-outline mt-2"> | ||
{% octicon "comment-discussion" width="16" %} | ||
{% data ui.support.contact_support %} | ||
</a> | ||
</div> | ||
</section> | ||
<div> | ||
<h3 class="mb-2 f4"> | ||
{% data ui.support.still_need_help %} | ||
</h3> | ||
{% if currentVersion contains 'enterprise' %}{% assign isEnterprise = true %}{% else %}{% assign isEnterprise = false %}{% endif %} | ||
<a id="ask-community" href="https://github.community" class="btn btn-outline mr-4 mt-2"> | ||
{% octicon "people" width="16" %} | ||
{% data ui.support.ask_community %} | ||
</a> | ||
<a id="contact-us" href="{% unless isEnterprise %}https://support.github.com/contact{% else %}https://enterprise.github.com/support{% endunless %}" class="btn btn-outline mt-2"> | ||
{% octicon "comment-discussion" width="16" %} | ||
{% data ui.support.contact_support %} | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters