-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
202 lines (176 loc) · 7.78 KB
/
index.html
File metadata and controls
202 lines (176 loc) · 7.78 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classic KB Articles</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
line-height: 1.6;
background-color: #f8f9fa;
}
.container {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 0.5rem;
margin-bottom: 2rem;
}
.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.article-card {
border: 1px solid #e1e8ed;
border-radius: 6px;
padding: 1.5rem;
background: #fafbfc;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.article-card a {
text-decoration: none;
color: #2c3e50;
font-weight: 500;
display: block;
}
.article-card a:hover {
color: #3498db;
}
.article-title {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.article-category {
font-size: 0.85rem;
color: #7f8c8d;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 0.5rem;
}
.stats {
margin-top: 2rem;
padding: 1rem;
background: #ecf0f1;
border-radius: 6px;
text-align: center;
color: #7f8c8d;
}
</style>
</head>
<body>
<div class="container">
<h1>Classic KB Articles</h1>
<p>Welcome to the Classic Knowledge Base Articles collection. Browse through our comprehensive guides and troubleshooting articles below.</p>
<div class="articles-grid">
<div class="article-card">
<div class="article-category">Connectivity</div>
<div class="article-title">
<a href="content/accessing-localhost-ports-in-browser-vs-code.html">Accessing localhost ports in Browser VS Code</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Integration</div>
<div class="article-title">
<a href="content/connecting-cursor-ai-to-gitpod-workspace.html">Connecting Cursor AI to a Gitpod Workspace</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Integration</div>
<div class="article-title">
<a href="content/connecting-to-gitpod-workspaces-from-cursor-editor.html">Connecting to Gitpod Workspaces from Cursor Editor</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Billing</div>
<div class="article-title">
<a href="content/how-to-cancel-gitpod-classic-subscription.html">How to Cancel Your Gitpod Classic Subscription</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Configuration</div>
<div class="article-title">
<a href="content/how-to-change-workspace-inactivity-timeout-in-gitpod.html">How to Change Workspace Inactivity Timeout in Gitpod</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Billing</div>
<div class="article-title">
<a href="content/how-to-delete-old-payment-method-and-set-new-default-card.html">How to delete an old payment method and set a new default card</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Configuration</div>
<div class="article-title">
<a href="content/how-to-manage-port-forwarding-for-testcontainers-in-gitpod.html">How to manage port forwarding for TestContainers in Gitpod</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Performance</div>
<div class="article-title">
<a href="content/how-to-monitor-workspace-load-times-and-performance.html">How to Monitor Workspace Load Times and Performance</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Account Setup</div>
<div class="article-title">
<a href="content/phone-verification-issues-when-creating-gitpod-account.html">Phone Verification Issues When Creating a Gitpod Account</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Access</div>
<div class="article-title">
<a href="content/student-access-and-free-usage-on-gitpod.html">Student Access and Free Usage on Gitpod</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Troubleshooting</div>
<div class="article-title">
<a href="content/troubleshooting-workspace-stuck-in-starting-state.html">Troubleshooting a Workspace Stuck in "Starting" State</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Troubleshooting</div>
<div class="article-title">
<a href="content/troubleshooting-gitpod-cli-login-issues-for-self-hosted-instances.html">Troubleshooting Gitpod CLI Login Issues for Self-Hosted Instances</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Security</div>
<div class="article-title">
<a href="content/understanding-aws-security-alerts-for-gitpod-lambda-app-controller.html">Understanding AWS Security Alerts for Gitpod Lambda App Controller</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Configuration</div>
<div class="article-title">
<a href="content/understanding-environment-variable-persistence-in-gitpod.html">Understanding Environment Variable Persistence in Gitpod</a>
</div>
</div>
<div class="article-card">
<div class="article-category">Best Practices</div>
<div class="article-title">
<a href="content/when-should-i-start-a-new-workspace.html">When Should I Start a New Workspace?</a>
</div>
</div>
</div>
<div class="stats">
<strong>15 articles</strong> available across 8 categories
</div>
</div>
</body>
</html>