layouts/partials/header.html (51 lines of code) (raw):
<div id="header">
<div id="subProjectsNavBar">
<a href="/">
{{ if eq .project "home" }}
<strong>Apache MINA Project</strong>
{{ else }}
Apache MINA Project
{{ end }}
</a>
|
<a href="/mina-project/">
{{ if eq .project "mina" }}
<strong>MINA</strong>
{{ else }}
MINA
{{ end }}
</a>
|
<a href="/asyncweb-project/">
{{ if eq .project "asyncweb" }}
<strong>AsyncWeb</strong>
{{ else }}
AsyncWeb
{{ end }}
</a>
|
<a href="/ftpserver-project/">
{{ if eq .project "ftpserver" }}
<strong>FtpServer</strong>
{{ else }}
FtpServer
{{ end }}
</a>
|
<a href="/sshd-project/">
{{ if eq .project "sshd" }}
<strong>SSHD</strong>
{{ else }}
SSHD
{{ end }}
</a>
|
<a href="/vysper-project/">
{{ if eq .project "vysper" }}
<strong>Vysper</strong>
{{ else }}
Vysper
{{ end }}
</a>
</div><!-- subProjectsNavBar -->
</div><!-- header -->