27 lines
950 B
Plaintext
27 lines
950 B
Plaintext
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title><%= t("bus_booking.bus_booking") %></title>
|
|
<script type="text/javascript">
|
|
var currentLocaleForCKEDITOR = "<%= (I18n.locale.to_s == "zh_tw" || I18n.locale.to_s == "zh_cn" ? "zh" : I18n.locale.to_s) %>";
|
|
</script>
|
|
<%= render 'shared/meta' %>
|
|
<%= render 'shared/google_font' %>
|
|
<%= stylesheet_link_tag "bus_booking/application" %>
|
|
<%= stylesheet_link_tag "back_end", media: "all", "data-turbolinks-track" => true %>
|
|
<%= stylesheet_link_tag "//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"%>
|
|
<%= yield :page_specific_css %>
|
|
<%= render 'shared/ie_html5_fix' %>
|
|
<%= javascript_include_tag "back_end" %>
|
|
<%= yield :page_specific_javascript %>
|
|
<%= javascript_include_tag "lib/process.manager" %>
|
|
<%= csrf_meta_tag %>
|
|
</head>
|
|
<body>
|
|
<section id="bus-booking">
|
|
<%= render :partial => "admin/shared/nav" %>
|
|
<%= yield %>
|
|
</section>
|
|
</body>
|
|
</html>
|