-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (108 loc) · 5.56 KB
/
Copy pathindex.html
File metadata and controls
117 lines (108 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<!-- Primary Meta Tags -->
<meta name="title" content="Remote Control System v2.0 - Secure Remote Access Platform">
<meta name="description" content="Zero-trust, audit-ready, anywhere remote access platform. Control any computer from anywhere with enterprise-grade security.">
<meta name="keywords" content="remote control, remote desktop, zero-trust, security, open source, NAT traversal, audit logging, remote access">
<meta name="author" content="Remote Control System Contributors">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://nerdcross.github.io/rcs-docs/">
<meta property="og:title" content="Remote Control System v2.0 - Secure Remote Access Platform">
<meta property="og:description" content="Zero-trust, audit-ready, anywhere remote access platform. Control any computer from anywhere with enterprise-grade security.">
<meta property="og:image" content="https://nerdcross.github.io/rcs-docs/assets/images/og-image.svg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Remote Control System v2.0">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://nerdcross.github.io/rcs-docs/">
<meta property="twitter:title" content="Remote Control System v2.0 - Secure Remote Access Platform">
<meta property="twitter:description" content="Zero-trust, audit-ready, anywhere remote access platform. Control any computer from anywhere with enterprise-grade security.">
<meta property="twitter:image" content="https://nerdcross.github.io/rcs-docs/assets/images/og-image.svg">
<meta property="twitter:site" content="@remotecontrol">
<!-- Additional SEO -->
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<link rel="canonical" href="https://nerdcross.github.io/rcs-docs/">
<!-- Favicon (optional - add favicon.ico to root) -->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<title>Remote Control System v2.0 | Secure Remote Access Platform</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap" rel="stylesheet">
<script>
// Base path detection for GitHub Pages
(function() {
var path = window.location.pathname;
var repoMatch = path.match(/^\/([^\/]+)\/index\.html/);
window.BASE_PATH = window.location.pathname.replace(/\/index\.html$/, '').replace(/\/$/, '');
// Handle redirect from 404.html
var redirectRoute = sessionStorage.getItem('redirectRoute');
if (redirectRoute) {
sessionStorage.removeItem('redirectRoute');
window.addEventListener('DOMContentLoaded', function() {
if (window.navigateToPath) {
window.navigateToPath(redirectRoute);
} else {
window.location.hash = redirectRoute;
}
});
}
})();
// Track page views for SPA navigation (for analytics)
document.addEventListener('DOMContentLoaded', function() {
// Track initial page load
if (typeof gtag !== 'undefined') {
gtag('event', 'page_view', {
'page_title': document.title,
'page_location': window.location.href
});
}
});
// Expose navigation for analytics tracking
window.trackNavigation = function(pageName) {
if (typeof gtag !== 'undefined') {
gtag('event', 'page_view', {
'page_title': pageName,
'page_location': window.location.origin + window.location.pathname + '#/' + pageName
});
}
};
</script>
</head>
<body>
<div id="app">
<header id="header"></header>
<main id="main-content">
<div class="container" style="text-align: center; padding: 3rem;">
<div style="animation: pulse 1.5s infinite;">Loading Remote Control System...</div>
<style>
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
</style>
</div>
</main>
<footer id="footer"></footer>
<div id="videoModal" class="video-modal">
<div class="video-modal-content">
<button class="video-modal-close" id="closeVideoModal">×</button>
<div class="video-container">
<div id="videoContainer" class="video-placeholder-inline">
<div>Loading video...</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/router.js"></script>
<script src="js/app.js"></script>
</body>
</html>