111 lines
3.0 KiB
HTML
111 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="./favicon.ico" rel="shortcut icon" type="image/x-icon">
|
|
<title>WS-Office - Fork of ONLYOFFICE</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header {
|
|
background-color: #efefef;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
header img {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.content {
|
|
max-width: 900px;
|
|
margin: 3rem auto;
|
|
padding: 1.5rem;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
color: #000000;
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.1rem;
|
|
line-height: 1.6;
|
|
text-align: justify;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.license {
|
|
margin-top: 2rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.license img {
|
|
width: 11rem;
|
|
margin-right: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<img src="./ws-logo.png" alt="WS-Office Logo">
|
|
</header>
|
|
|
|
<div class="content">
|
|
<h1>Welcome to WS-Office</h1>
|
|
<p>
|
|
<strong>WS-Office</strong> is a fork of the open-source project <strong>ONLYOFFICE</strong>,
|
|
created to provide advanced document management and collaboration tools. This project is tailored for
|
|
organizations
|
|
looking for a highly customizable and powerful document server solution.
|
|
</p>
|
|
<p>
|
|
This project is distributed under the <a href="https://www.gnu.org/licenses/agpl-3.0.html"
|
|
target="_blank">GNU AGPLv3 license</a>,
|
|
ensuring that all modifications and improvements made to the software remain accessible to the community.
|
|
The source code is publicly available and can be accessed via our official repository.
|
|
</p>
|
|
<p>
|
|
Feel free to explore the source code, contribute, and collaborate with us on <a
|
|
href="https://git2.workstreams.ch/workstreams-os/ws-office" target="_blank">Git Repository of
|
|
WS-Office</a>.
|
|
</p>
|
|
|
|
<div class="license">
|
|
<img src="./AGPLv3_Logo.svg.png" alt="GNU AGPLv3 License">
|
|
<p>
|
|
Licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank">GNU AGPLv3</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |