github.com/projectcontour/contour@v1.28.2/site/themes/contour/layouts/partials/header.html (about) 1 {{ $latest := (cond (.Site.Params.docs_versioning) .Site.Params.latest_version "") }} 2 <header> 3 <div class="wrapper"> 4 <a href="{{ .Site.BaseURL }}"><img class="image" src="/img/Contour.svg" alt="Contour Logo" /></a> 5 <ul class="desktop-links"> 6 <li><a href="/getting-started/" {{ if (eq .RelPermalink "/getting-started/") }}class="active"{{ end }}>Getting Started</a></li> 7 <li><a href="/docs/{{ $latest }}" {{ if (eq .Page.Section "docs") }}class="active"{{ end }}>Documentation</a></li> 8 <li><a href="/community/" {{ if (eq .RelPermalink "/community/") }}class="active"{{ end }}>Community</a></li> 9 <li><a href="/resources/" {{ if (eq .RelPermalink "/resources/") }}class="active"{{ end }}>Resources</a></li> 10 <li><a href="/blog/" {{ if or (eq .Page.Section "posts") (eq .Page.Section "tags") }}class="active"{{ end }}>Blog</a></li> 11 </ul> 12 <button type="button" class="mobile" onclick="mobileNavToggle()"> 13 <img class="collapsed-icon" src="/img/hamburger.svg" alt="Mobile nav icon"> 14 <img class="expanded-icon" src="/img/close.svg" alt="Mobile nav icon"> 15 </button> 16 <div id="mobile-menu" class="mobile-menu mobile"> 17 <ul class="header-links"> 18 <li><a href="/getting-started/" {{ if (eq .RelPermalink "/getting-started/") }}class="active"{{ end }}>Getting Started</a></li> 19 <li><a href="/docs/{{ $latest }}" {{ if (eq .Page.Section "docs") }}class="active"{{ end }}>Documentation</a></li> 20 <li><a href="/community/" {{ if (eq .RelPermalink "/community/") }}class="active"{{ end }}>Community</a></li> 21 <li><a href="/resources/" {{ if (eq .RelPermalink "/resources/") }}class="active"{{ end }}>Resources</a></li> 22 <li><a href="/blog/" {{ if or (eq .Page.Section "posts") (eq .Page.Section "tags") }}class="active"{{ end }}>Blog</a></li> 23 </ul> 24 <div class="social"> 25 <a href="https://twitter.com/projectcontour"><img src="/img/twitter.png" />Twitter</a> 26 <a href="https://kubernetes.slack.com/?redir=%2Fmessages%2Fcontour"><img src="/img/slack.png" />Slack</a> 27 <a href="/blog/feed.xml"><img src="/img/rss.png" />RSS</a> 28 <a href="https://github.com/projectcontour/contour"><img src="/img/github.svg" />GitHub</a> 29 </div> 30 </div> 31 </div> 32 </header>