2017-10-12 18:44:13 +01:00
|
|
|
<%@ Page Language="C#" Inherits="DiscImageChef.Server.Default" %>
|
2017-12-19 03:50:57 +00:00
|
|
|
<%--
|
|
|
|
|
// /***************************************************************************
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : Default.aspx
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// Component : DiscImageChef Server.
|
|
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Renders README.md.
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This library is distributed in the hope that it will be useful, but
|
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
--%>
|
2017-10-12 18:44:13 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<head runat="server">
|
2017-12-19 20:33:03 +00:00
|
|
|
<link href='dos.css' rel='stylesheet' type='text/css'/>
|
2017-10-12 18:44:13 +01:00
|
|
|
<title>DiscImageChef</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body id="body" runat="server">
|
2017-12-19 20:33:03 +00:00
|
|
|
<h1 align="center">Welcome to <i>
|
|
|
|
|
<a href="http://github.com/claunia/discimagechef" target="_blank">DiscImageChef</a>
|
|
|
|
|
</i> Server version <asp:Label id="lblVersion" runat="server"/>
|
|
|
|
|
</h1>
|
2017-10-12 18:44:13 +01:00
|
|
|
</body>
|
2017-12-19 20:33:03 +00:00
|
|
|
</html>
|