File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date

2012-11-29
2012-08-28
@(title: String)(theme:String)(content: Html)(implicit lang:Lang)
@import utils.TemplateHelper._
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>@title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.ico")">
<link rel="stylesheet" type="text/css" media="screen" href="@getCSSLink("bootstrap.min")">
<link rel="stylesheet" type="text/css" media="screen" href="@getCSSLink("nforge")">
<script type="text/javascript" src="@getJSLink("lib/jquery/jquery-1.9.0")"></script>
<script type="text/javascript" src="@getJSLink("common/hive.Common")"></script>
<!-- HIVE : Software development platform -->
</head>
<body class="@theme">
@content
<script type="text/javascript" src="@getJSLink("lib/jquery/jquery.tmpl")"></script>
<script type="text/javascript" src="@getJSLink("lib/jquery/jquery.form")"></script>
<script type="text/javascript" src="@getJSLink("lib/jquery/jquery.validate")"></script>
<script type="text/javascript" src="@getJSLink("lib/jquery/jquery.zclip.min")"></script>
<script type="text/javascript" src="@getJSLink("lib/jquery/jquery.placeholder.min")"></script>
<script type="text/javascript" src="@getJSLink("lib/bootstrap")"></script>
<script type="text/javascript" src="@getJSLink("lib/rgbcolor")"></script>
<script type="text/javascript" src="@getJSLink("lib/humanize")"></script>
<script type="text/javascript" src="@getJSLink("lib/validate")"></script>
<script type="text/javascript" src="@getJSLink("common/hive.Pagination")"></script>
<script type="text/javascript" src="@getJSLink("common/hive.Markdown")"></script>
<script type="text/javascript" src="@getJSLink("common/hive.FileUploader")"></script>
<script type="text/javascript" src="@getJSLink("common/hive.Label")"></script>
<script type="text/javascript" src="@getJSLink("common/hive.Shortcut")"></script>
<script type="text/javascript" src="@routes.Application.jsMessages()"></script>
<script type="text/javascript">
$hive.setScriptPath("@getJSPath()");
$(document).ready(function(){
$(".n-alert").click(function(){
$(this).hide();
})
// jquery.placeholder plugin initiator
$('input, textarea').placeholder();
// show setting menu tooltips
// with bootstrap if it can (temporary before redesign)
$(".bg-side-menu").tooltip({placement: 'left', title: '설정'});
// show on developing message
$(".underConstruction").tooltip({placement: 'left', title: 'Sorry! Under construction...'});
});
</script>
<!-- HIVE -->
<!-- UserVoice JavaScript SDK (only needed once on a page) -->
<script>(function(){var uv=document.createElement('script');uv.type='text/javascript';uv.async=true;uv.src='//widget.uservoice.com/pHKWfqCMdpRfBQGdt9v55g.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(uv,s)})()</script>
<!-- A tab to launch the Classic Widget -->
<script>
UserVoice = window.UserVoice || [];
UserVoice.push(['showTab', 'classic_widget', {
mode: 'feedback',
primary_color: '#d4d4d4',
link_color: '#f36b22',
forum_id: 196721,
tab_label: 'Feedback',
tab_color: '#f36b22',
tab_position: 'middle-left',
tab_inverted: true
}]);
</script>
</body>
</html>