diff options
| author | 2019-04-20 01:16:13 +0200 | |
|---|---|---|
| committer | 2019-04-20 01:16:13 +0200 | |
| commit | a27b3a313c64a264e0b52043f41fd28b684cc654 (patch) | |
| tree | 4455327209658bfcea26a98c1e77a2f61ee9f693 /pydis_site/templates/base/navbar.html | |
| parent | Addressing volcyys third review. (diff) | |
Adding a Discord menu item to the hamburger, and upping test coverage back to 100%
Diffstat (limited to 'pydis_site/templates/base/navbar.html')
| -rw-r--r-- | pydis_site/templates/base/navbar.html | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/pydis_site/templates/base/navbar.html b/pydis_site/templates/base/navbar.html index ed6ae118..5e76b3a6 100644 --- a/pydis_site/templates/base/navbar.html +++ b/pydis_site/templates/base/navbar.html @@ -19,6 +19,13 @@    {# Content on the right side of the navbar #}    <div class="navbar-menu is-paddingless" id="navbar_menu">      <div class="navbar-end"> + +      {# Discord invite - only visible in the hamburger on mobile sizes. #} +      <a class="navbar-item is-hidden-desktop" href="https://discord.gg/python"> +        <span class="icon is-size-4 is-medium"><i class="fab fa-discord"></i></span> +        <span> Discord</span> +      </a> +        {# GitHub #}        <a class="navbar-item" href="https://github.com/python-discord">          <span class="icon is-size-4 is-medium"><i class="fab fa-github"></i></span> @@ -43,7 +50,7 @@          <span> Patreon</span>        </a> -      {# RedBubble #} +      {# Merch #}        <a class="navbar-item" href="https://www.redbubble.com/people/PythonDiscord/shop">          <span class="icon is-size-4 is-medium"><i class="fas fa-tshirt"></i></span>          <span> Merch</span>  |