Files
document-server-integration/web/documentserver-example/ruby/app/views/layouts/application.html.erb
Sergey Linnik b3d3b81274 copyright 2024
2024-02-01 12:39:36 +03:00

45 lines
1.6 KiB
Plaintext

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<!--
*
* (c) Copyright Ascensio System SIA 2024
*
* 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.
*
-->
<%
favicon = "favicon.ico"
if (@file)
favicon = @file.document_type + ".ico"
end
%>
<%= favicon_link_tag favicon %>
<title>ONLYOFFICE</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:900,800,700,600,500,400,300&subset=latin,cyrillic-ext,cyrillic,latin-ext" />
<%= stylesheet_link_tag "stylesheet" %>
<%= stylesheet_link_tag "jquery-ui" %>
<%= stylesheet_link_tag "media" %>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="server-version" content="<%= ConfigurationManager.new.version %>" />
</head>
<body>
<%= yield %>
</body>
</html>