File name
Commit message
Commit date
2014-05-22
File name
Commit message
Commit date
2014-05-22
2014-05-22
File name
Commit message
Commit date
2014-05-22
2014-05-20
2014-05-22
File name
Commit message
Commit date

@**
* Yobi, Project Hosting SW
*
* Copyright 2014 NAVER Corp.
* http://yobi.io
*
* @Author Deokhong Kim
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**@
@(menuType:utils.MenuType, isProject:Boolean)
@import utils._
@isActiveMenu(m_type:MenuType) = @{
if(m_type == menuType){ "active" }
}
@appFeedbackUrl() = @{
play.Configuration.root().getString("application.feedback.url")
}
<div class="unsupported">
<div class="unsupported-inner">
<p id="unsupported-content">
<i class="yobicon-alert"></i>
@Html(Messages("error.unsupported.ie"))
</p>
</div>
</div>
<header class="gnb-outer @if(isProject) {project-header}">
<div class="gnb-inner">
<a href="@routes.Application.index()" class="logo"><h1 class="blind">@utils.Config.getSiteName</h1></a>
<ul class="gnb-nav">
<li class="@isActiveMenu(MenuType.PROJECTS)">
<a href="@routes.ProjectApp.projects()">@Messages("title.projectList")</a>
</li>
<li class="@isActiveMenu(MenuType.HELP)">
<a href="@routes.HelpApp.help()">@Messages("title.help")</a>
</li>
@if(appFeedbackUrl){
<li>
<a href="@appFeedbackUrl" target="_blank">@Messages("title.yobi.feedback")</a>
</li>
}
</ul>
@common.usermenu(null)
</div>
</header>