47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
<!DOCTYPE HTML>
|
||
<html class="<%= I18n.locale.to_s %>">
|
||
<head>
|
||
<%= render 'layouts/meta' %>
|
||
<meta charset="utf-8">
|
||
<%= page_title(@item).html_safe %>
|
||
<link rel="shortcut icon" href="<%= asset_path "ncculogo.ico" %>">
|
||
<%= page_metas(@item).html_safe %>
|
||
<!--[if lt IE 9]>
|
||
<%= javascript_include_tag "html5" %>
|
||
<![endif]-->
|
||
<%= stylesheet_link_tag "page_layout" %>
|
||
<%= page_stylesheets(@item).html_safe %>
|
||
<%= javascript_include_tag "page_layout" %>
|
||
<%= page_javascripts(@item).html_safe %>
|
||
<%= javascript_include_tag "orbit_js_1.0.1-front-end.js" unless @no_orbit_bar %>
|
||
<%= csrf_meta_tag %>
|
||
</head>
|
||
<body>
|
||
<%= yield %>
|
||
<% if flash[:error] %>
|
||
<div class="modal alert alert-error hide" id="myModal">
|
||
<p type="button" class="close" data-dismiss="modal">×</p>
|
||
<%= "<strong>#{flash[:error]}</strong><br/>".html_safe%>
|
||
</div>
|
||
<script>
|
||
$('#myModal').modal('show')
|
||
</script>
|
||
<% end -%>
|
||
<% if @edit %>
|
||
<script>
|
||
function externalFunction(Fn, iContents, pc) {
|
||
$(document).ajaxStop(function() {
|
||
Fn(iContents, pc);
|
||
});
|
||
};
|
||
</script>
|
||
<style>
|
||
.body {
|
||
margin: 0;
|
||
}
|
||
</style>
|
||
<% end %>
|
||
<div id='last_update_date_wrap' style='display:none;'><div id='last_update_date'><%= @last_update_date %></div></div>
|
||
</body>
|
||
</html>
|