focalboard/website/site/layouts/partials/nav.html
emily dela cruz 5cd2c5116f
Marketing/website redesign (#2881)
* Focalboard website revamp work

* Removed alternate grey footer

* Update Contribute link and general styles

* Updated homepage images

* Update image src and alt for homepage

* Update nav items and general styles

* Fix menu items for focalboard.com internal pages

* Update README with asset versioning notes. Update URLs in footer. Update asset versions in query strings.

Co-authored-by: Jared <jared@presentlogic.com>
Co-authored-by: Jared Thomas <jared.thomas@ela1.com>
2022-04-22 11:26:40 -07:00

23 lines
813 B
HTML
Executable file

{{ partial "notification.html" . }}
{{ if .Site.Params.notification.enable }}
<header class="with-notification-bar">
{{ else }}
<header>
{{ end }}
<div class="container">
<a href="/"><img src="img/logo.svg?version=v2" class="logo__colored" alt="Logo" width="212px"></a>
<a href="/"><img src="img/logo-white.svg?version=v2" class="logo__white" alt="Logo" width="212px"></a>
<div class="header__menu-toggle">
<div class="menu-bar"></div>
<div class="menu-bar"></div>
<div class="menu-bar"></div>
</div>
<ul class="header__links--right">
{{ range .Site.Menus.postpend }}
<li><a class="external" rel="noopener" href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
</ul>
</div>
</header>