Skip to content

Commit 9aeed60

Browse files
committed
[WIP] make awesome home page
1 parent f3d98ee commit 9aeed60

File tree

11 files changed

+672
-44
lines changed

11 files changed

+672
-44
lines changed

source/docs/_extra/css/extra.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
1+
.md-typeset__table {
2+
min-width: 100%;
3+
}
4+
5+
@media only screen and (min-width: 768px) {
6+
td:nth-child(1) {
7+
white-space: nowrap;
8+
}
9+
}
10+
11+
* {
12+
--md-primary-fg-color: #102b3e;
13+
--md-primary-fg-color--light: #445a68;
14+
--md-primary-fg-color--dark: #0c2230;
15+
--md-typeset-color: var(--md-default-fg-color);
16+
--md-typeset-a-color: var(--md-primary-fg-color--light);
17+
}
18+
19+
:root {
20+
--md-primary-fg-color: #102b3e;
21+
--md-primary-fg-color--light: #445a68;
22+
--md-primary-fg-color--dark: #0c2230;
23+
}
24+
25+
:root>* {
26+
--md-typeset-color: var(--md-default-fg-color);
27+
--md-typeset-a-color: var(--md-primary-fg-color--light);
28+
}
29+
30+
/*
31+
markdown and image alignment
32+
ALT tag and a CSS selector on the alt tag
33+
*/
34+
img[src*='#left'] {
35+
float: left;
36+
}
37+
38+
img[src*='#right'] {
39+
float: right;
40+
}
41+
42+
img[src*='#center'] {
43+
display: block;
44+
margin: auto;
45+
}
46+
47+
/*
48+
Tables set to 100% width
49+
*/
50+
.md-typeset__table {
51+
min-width: 100%;
52+
}
53+
54+
.md-typeset table:not([class]) {
55+
display: table;
56+
}
57+
158
img {
259
/* box-shadow: 2px 2px 10px 2px #888888; */
360
display: block;
90.7 KB
Loading
329 KB
Loading

source/docs/index copy.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# {{name}}
2+
3+
![logo](img/p2o.png)
4+
5+
> {{name}} is the upgraded version of PRemoteM.
6+
7+
{{name}} a **open-source** remote access manager and connection launcher for Windows. It comes integrated with a number of different protocols but also provides extensibility options via existing CLI tools implementing any kind of protocol.
8+
9+
!!! warning
10+
{{name}} is still under development, you can try it's previous version **`PRemoteM`** instead.
11+
12+
[Download](./download.md){ .md-button .md-button--primary .inline .auto_width}
13+
14+
[Quick Start](./usage/quick-start.md){ .md-button .md-button--primary .inline .auto_width}
15+
16+
[Make contribution](./about.md#make-1remote-stronger){ .md-button .md-button--primary .inline .auto_width}
17+
18+
<img src="https://raw.githubusercontent.com/1Remote/PRemoteM/Doc/DocPic/maindemo.png" width="800" />
19+
20+
## Features
21+
22+
- OTB support for **RDP, SSH, VNC, Telnet, SFTP, FTP, RemoteApp, Local App**
23+
- Quick and convenient remote **session launcher** by short cut ++alt++ + ++m++
24+
- **Multi-screen** and **HiDPI** supported RDP connection
25+
- Multi-address and Multi-account for your session, **auto switching address if one is not available**
26+
- Detailed connection configuration: **tags, icons, colors**, connection scripts etc.
27+
- Multiple languages, themes and **tabbed interface**
28+
- Customizable protocols, choose your favorite tools for each protocol (**e.g. WinSCP for SFTP / TigerVNC for VNC**)
29+
- Sync sessions between several machines via Dropbox, Google Drive, OneDrive, etc.
30+
- Sharing sessions in a small team via MySQL.
31+
- Portable mode supported.
32+

source/docs/index.md

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,4 @@
1-
# {{name}}
2-
3-
![logo](img/p2o.png)
4-
5-
> {{name}} is the upgraded version of PRemoteM.
6-
7-
{{name}} a **open-source** remote access manager and connection launcher for Windows. It comes integrated with a number of different protocols but also provides extensibility options via existing CLI tools implementing any kind of protocol.
8-
9-
!!! warning
10-
{{name}} is still under development, you can try it's previous version **`PRemoteM`** instead.
11-
12-
[Download](./download.md){ .md-button .md-button--primary .inline .auto_width}
13-
14-
[Quick Start](./usage/quick-start.md){ .md-button .md-button--primary .inline .auto_width}
15-
16-
[Make contribution](./about.md#make-1remote-stronger){ .md-button .md-button--primary .inline .auto_width}
17-
18-
<img src="https://raw.githubusercontent.com/1Remote/PRemoteM/Doc/DocPic/maindemo.png" width="800" />
19-
20-
## Features
21-
22-
- OTB support for **RDP, SSH, VNC, Telnet, SFTP, FTP, RemoteApp, Local App**
23-
- Quick and convenient remote **session launcher** by short cut ++alt++ + ++m++
24-
- **Multi-screen** and **HiDPI** supported RDP connection
25-
- Multi-address and Multi-account for your session, **auto switching address if one is not available**
26-
- Detailed connection configuration: **tags, icons, colors**, connection scripts etc.
27-
- Multiple languages, themes and **tabbed interface**
28-
- Customizable protocols, choose your favorite tools for each protocol (**e.g. WinSCP for SFTP / TigerVNC for VNC**)
29-
- Sync sessions between several machines via Dropbox, Google Drive, OneDrive, etc.
30-
- Sharing sessions in a small team via MySQL.
31-
- Portable mode supported.
32-
1+
---
2+
template: home.html
3+
title: Home
4+
---

source/docs/index_override.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
template: home.html
3+
title: Home
4+
---
73 KB
Loading

source/docs/usage/protocol/especial/remoteapp.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
A RemoteApp program is an application installed on an RD Session Host server. Remote Desktop Connection (RDC) and the RD Session Host use Remote Desktop Protocol (RDP) to redirect screen information for just the application instead of the full session-based virtual desktop.
1+
```A RemoteApp program is an application installed on an RD Session Host server. Remote Desktop Connection (RDC) and the RD Session Host use Remote Desktop Protocol (RDP) to redirect screen information for just the application instead of the full session-based virtual desktop.```
2+
3+
![rdpapp](./img/remoteapp.jpg)
24

35
With RemoteApp programs, you can use RDS to make programs on a Remote Desktop Session Host (RD Session Host) server appear as if they are running on a user 's local computer. RemoteApp program windows are shown on and integrated with a client's Desktop instead of being presented as part of a session-based virtual desktop. A RemoteApp program open on a Desktop.
46

source/mkdocs.yml

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ site_author: 1Remote Team
44
copyright: © 1Remote Team 2022
55

66
repo_url: https://github.com/1Remote/1Remote
7-
edit_uri: edit/main/source/docs
7+
edit_uri: https://github.com/1Remote/1Remote.github.io/edit/main/source/docs
88

99
dev_addr: 127.0.0.1:8000
1010

@@ -19,23 +19,38 @@ theme:
1919
logo: img/logo.png
2020
features:
2121
# - navigation.expand
22-
- navigation.instant
22+
- navigation.instant # now behaves like a Single Page Application
2323
- navigation.top # Back-to-top button
24-
- navigation.indexes
24+
- navigation.indexes # documents can be directly attached to sections, which is particularly useful for providing overview pages: https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#with-section-index-pages
25+
- header.autohide
2526
- navigation.tabs
2627
# - navigation.tabs.sticky # tab will not auto hide
2728
- navigation.sections
2829
- navigation.tracking
2930
name: material
30-
palette:
31+
# palette:
32+
# - scheme: default
33+
# toggle:
34+
# icon: material/lightbulb-outline
35+
# name: Switch to dark mode
36+
# - scheme: slate
37+
# toggle:
38+
# icon: material/lightbulb
39+
# name: Switch to light mode
40+
41+
palette: # https://www.materialpalette.com/colors
3142
- scheme: default
32-
toggle:
33-
icon: material/lightbulb-outline
34-
name: Switch to dark mode
35-
- scheme: slate
36-
toggle:
37-
icon: material/lightbulb
38-
name: Switch to light mode
43+
#primary: "teal" # comment to replace by /docs/assets/stylesheets
44+
accent: purple
45+
# toggle:
46+
# icon: material/toggle-switch-off-outline
47+
# name: Switch to dark mode
48+
# - scheme: slate
49+
# #primary: "teal" # comment to replace by /docs/assets/stylesheets
50+
# accent: teal
51+
# toggle:
52+
# icon: material/toggle-switch
53+
# name: Switch to light mode
3954

4055
extra_css:
4156
- _extra/css/extra.css

0 commit comments

Comments
 (0)