add welcome page
/ create-package (push) Successful in 15m34s
Details
/ create-package (push) Successful in 15m34s
Details
parent
0d2ba13ced
commit
4de9888162
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
image: catthehacker/ubuntu:act-latest
|
image: catthehacker/ubuntu:act-latest
|
||||||
# options: "-v "
|
# options: "-v "
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repo
|
- name: Check out Repo
|
||||||
uses: https://code.forgejo.org/actions/checkout@v3
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker BuildX
|
- name: Set up Docker BuildX
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 51 KiB |
|
|
@ -86,3 +86,8 @@ COPY --from=build-stage --chown=ds:ds /build/web-apps/deploy/web-apps/apps/sprea
|
||||||
|
|
||||||
COPY local-production-linux.json /etc/onlyoffice/documentserver/local-production-linux.json
|
COPY local-production-linux.json /etc/onlyoffice/documentserver/local-production-linux.json
|
||||||
|
|
||||||
|
# Replace welcome page
|
||||||
|
COPY welcome.html ${oo_root}/web-apps/welcome/index.html
|
||||||
|
COPY favicon.ico ${oo_root}/web-apps/welcome/favicon.ico
|
||||||
|
COPY ws-logo.png ${oo_root}/web-apps/welcome/ws-logo.png
|
||||||
|
COPY AGPLv3_Logo.svg.png ${oo_root}/web-apps/welcome/AGPLv3_Logo.svg.png
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
|
|
@ -0,0 +1,111 @@
|
||||||
|
<!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>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 8.9 KiB |
Loading…
Reference in New Issue