|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>VxLang Project Documentation</title> |
| 7 | + <link href="https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600&display=swap" rel="stylesheet"> |
| 8 | + <link rel="icon" href="https://vxlang.github.io/image/web-icon.ico"> |
| 9 | + |
| 10 | + <style> |
| 11 | + body { |
| 12 | + font-family: 'Segoe UI', Tahoma, sans-serif; |
| 13 | + background-color: #1e1e1e; |
| 14 | + color: #f0f0f0; |
| 15 | + margin: 0; |
| 16 | + padding: 0; |
| 17 | + line-height: 1.6; |
| 18 | + } |
| 19 | + |
| 20 | + header { |
| 21 | + background-color: #252526; |
| 22 | + color: #ffffff; |
| 23 | + padding: 20px 40px; |
| 24 | + text-align: left; |
| 25 | + font-size: 24px; |
| 26 | + font-weight: 600; |
| 27 | + border-bottom: 1px solid #3c3c3c; |
| 28 | + } |
| 29 | + |
| 30 | + nav { |
| 31 | + background-color: #2d2d2d; |
| 32 | + border-bottom: 1px solid #3c3c3c; |
| 33 | + padding: 10px 40px; |
| 34 | + display: flex; |
| 35 | + justify-content: space-between; |
| 36 | + align-items: center; |
| 37 | + } |
| 38 | + |
| 39 | + .nav-title { |
| 40 | + color: #ffffff; |
| 41 | + font-weight: 600; |
| 42 | + font-size: 18px; |
| 43 | + } |
| 44 | + |
| 45 | + .nav-links { |
| 46 | + display: flex; |
| 47 | + gap: 20px; |
| 48 | + } |
| 49 | + |
| 50 | + .nav-links a { |
| 51 | + color: #61dafb; |
| 52 | + text-decoration: none; |
| 53 | + font-weight: 600; |
| 54 | + } |
| 55 | + |
| 56 | + .nav-links a:hover { |
| 57 | + text-decoration: underline; |
| 58 | + } |
| 59 | + |
| 60 | + .container { |
| 61 | + display: flex; |
| 62 | + max-width: 1200px; |
| 63 | + margin: 20px auto; |
| 64 | + padding: 0 40px; |
| 65 | + } |
| 66 | + |
| 67 | + .sidebar { |
| 68 | + width: 200px; |
| 69 | + background-color: #252526; |
| 70 | + border-right: 1px solid #3c3c3c; |
| 71 | + padding: 20px; |
| 72 | + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); |
| 73 | + border-radius: 10px; |
| 74 | + position: sticky; |
| 75 | + top: 20px; /* 사이드바가 화면 상단에 고정되도록 수정 */ |
| 76 | + height: fit-content; |
| 77 | + |
| 78 | + } |
| 79 | + |
| 80 | + .sidebar a { |
| 81 | + display: block; |
| 82 | + color: #f0f0f0; |
| 83 | + text-decoration: none; |
| 84 | + padding: 10px 0; |
| 85 | + font-size: 15px; |
| 86 | + border-bottom: 1px solid #3c3c3c; |
| 87 | + /* font-weight: 600; 글씨를 굵게 처리했습니다 */ |
| 88 | + } |
| 89 | + |
| 90 | + .sidebar a:hover { |
| 91 | + text-decoration: underline; |
| 92 | + } |
| 93 | + |
| 94 | + .sidebar h1 { |
| 95 | + color: #61dafb; |
| 96 | + } |
| 97 | + |
| 98 | + .main-content { |
| 99 | + flex: 1; |
| 100 | + background-color: #2d2d2d; |
| 101 | + padding: 20px 40px; |
| 102 | + margin-left: 20px; |
| 103 | + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); |
| 104 | + border-radius: 5px; |
| 105 | + } |
| 106 | + |
| 107 | + .main-content h1 { |
| 108 | + color: #61dafb; |
| 109 | + font-size: 28px; |
| 110 | + margin-bottom: 20px; |
| 111 | + font-weight: 600; |
| 112 | + } |
| 113 | + |
| 114 | + .main-content h2 { |
| 115 | + color: #61dafb; |
| 116 | + font-size: 22px; |
| 117 | + margin-bottom: 15px; |
| 118 | + font-weight: 600; |
| 119 | + } |
| 120 | + |
| 121 | + .main-content p { |
| 122 | + margin-bottom: 15px; |
| 123 | + font-size: 16px; |
| 124 | + color: #f0f0f0; |
| 125 | + } |
| 126 | + |
| 127 | + .main-content a { |
| 128 | + color: #61dafb; |
| 129 | + text-decoration: none; |
| 130 | + font-weight: 600; |
| 131 | + } |
| 132 | + |
| 133 | + .main-content a:hover { |
| 134 | + text-decoration: underline; |
| 135 | + } |
| 136 | + |
| 137 | + <!-- --> |
| 138 | + .code-block { |
| 139 | + background-color: #2d2d2d; |
| 140 | + border: 1px solid #3c3c3c; |
| 141 | + border-radius: 5px; |
| 142 | + padding: 15px; |
| 143 | + font-size: 16px; |
| 144 | + color: #d4d4d4; |
| 145 | + margin: 0px auto; |
| 146 | + overflow-x: auto; |
| 147 | + } |
| 148 | + |
| 149 | + .code-block .keyword { |
| 150 | + color: #569cd6; |
| 151 | + } |
| 152 | + |
| 153 | + .code-block .type { |
| 154 | + color: #4ec9b0; |
| 155 | + } |
| 156 | + |
| 157 | + .code-block .parameter { |
| 158 | + color: #9cdcfe; |
| 159 | + } |
| 160 | + |
| 161 | + .code-block .define { |
| 162 | + color: #9966cc; |
| 163 | + } |
| 164 | + |
| 165 | + .code-block .annotation { |
| 166 | + color: #009999; |
| 167 | + } |
| 168 | + |
| 169 | + <!-- --> |
| 170 | + |
| 171 | + footer { |
| 172 | + background-color: #252526; |
| 173 | + color: #ffffff; |
| 174 | + text-align: center; |
| 175 | + padding: 10px; |
| 176 | + margin-top: 20px; |
| 177 | + border-top: 1px solid #3c3c3c; |
| 178 | + font-size: 14px; |
| 179 | + } |
| 180 | + |
| 181 | + </style> |
| 182 | + |
| 183 | + <!-- --> |
| 184 | + <script> |
| 185 | + document.addEventListener("DOMContentLoaded", function() { |
| 186 | + const sidebar = document.querySelector('.sidebar'); |
| 187 | + const headings = document.querySelectorAll('.main-content h1, .main-content h2'); |
| 188 | + |
| 189 | + headings.forEach(heading => { |
| 190 | + const link = document.createElement('a'); |
| 191 | + link.textContent = heading.textContent; |
| 192 | + link.href = `#${heading.id}`; |
| 193 | + link.style.marginLeft = heading.tagName === 'H2' ? '10px' : '0'; |
| 194 | + sidebar.appendChild(link); |
| 195 | + }); |
| 196 | + }); |
| 197 | + </script> |
| 198 | + |
| 199 | + <!-- Google tag (gtag.js) --> |
| 200 | + <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3576297577641849" |
| 201 | + crossorigin="anonymous"></script> |
| 202 | + <!-- Google tag (gtag.js) --> |
| 203 | + <script async src="https://www.googletagmanager.com/gtag/js?id=G-M65XF6FRKV"></script> |
| 204 | + <script> |
| 205 | + window.dataLayer = window.dataLayer || []; |
| 206 | + function gtag(){dataLayer.push(arguments);} |
| 207 | + gtag('js', new Date()); |
| 208 | + |
| 209 | + gtag('config', 'G-M65XF6FRKV'); |
| 210 | + </script> |
| 211 | +</head> |
| 212 | +<body> |
| 213 | + |
| 214 | +<header> |
| 215 | + <!-- VxLang Project |
| 216 | + -- Virtual-Machine x Intermediate-Language Project --> |
| 217 | +</header> |
| 218 | + |
| 219 | +<nav> |
| 220 | + <div class="nav-title">VxLang Project Documentation</div> |
| 221 | + <div class="nav-links"> |
| 222 | + <a href="https://vxlang.github.io">Overview</a> |
| 223 | + <a href="https://vxlang.github.io/news/news.html">News</a> |
| 224 | + <a href="https://vxlang.github.io/documentation.html">Documentation</a> |
| 225 | + <a href="https://vxlang.github.io/download.html">Download</a> |
| 226 | + <a href="https://vxlang.github.io/about.html">About</a> |
| 227 | + </div> |
| 228 | +</nav> |
| 229 | + |
| 230 | +<div class="container"> |
| 231 | + <aside class="sidebar"> |
| 232 | + <h1>Contents</h1> |
| 233 | + </aside> |
| 234 | + |
| 235 | + <section class="main-content"> |
| 236 | + <h1 id="task-list">Task List</h1> |
| 237 | + |
| 238 | + <h2 id="2025-task-list">2025 Task List</h2> |
| 239 | + <div class="code-block"> |
| 240 | + <ul> |
| 241 | + <li><b>VxLang 2025 subscription</b></li> |
| 242 | + <ul> |
| 243 | + <li><a href="https://www.patreon.com/posts/vxlang-2025-1y-1-126040977">Event Note</a></li> |
| 244 | + </ul> |
| 245 | + <li><b>How to apply the SDK to UEFI</b></li> |
| 246 | + <ul> |
| 247 | + <li><a href="https://www.patreon.com/posts/how-to-apply-sdk-123685074">Update Note</a></li> |
| 248 | + </ul> |
| 249 | + <li><b>2025 work plan list</b></li> |
| 250 | + <ul> |
| 251 | + <li><a href="https://www.patreon.com/posts/2025-work-plan-119895207">Update Note</a></li> |
| 252 | + </ul> |
| 253 | + </ul> |
| 254 | + </div> |
| 255 | + |
| 256 | + <!-- --> |
| 257 | + |
| 258 | + <h1 id="vxlang-overview">News</h1> |
| 259 | + |
| 260 | + <h2 id="2.0.8.0">2.0.8.0</h2> |
| 261 | + <div class="code-block"> |
| 262 | + <ul> |
| 263 | + <li><b>Windows Version Patch</b></li> |
| 264 | + <ul> |
| 265 | + <li><a href="https://www.patreon.com/posts/vxlang-2-0-8-0-126992714">Update Note</a></li> |
| 266 | + </ul> |
| 267 | + </ul> |
| 268 | + </div> |
| 269 | + |
| 270 | + <h2 id="2.0.7.0">2.0.7.0</h2> |
| 271 | + <div class="code-block"> |
| 272 | + <ul> |
| 273 | + <li><b>Windows Version Patch</b></li> |
| 274 | + <ul> |
| 275 | + <li><a href="https://www.patreon.com/posts/vxlang-2-0-7-0-126486340">Update Note</a></li> |
| 276 | + </ul> |
| 277 | + </ul> |
| 278 | + </div> |
| 279 | + |
| 280 | + <h2 id="2.0.6.0">2.0.6.0</h2> |
| 281 | + <div class="code-block"> |
| 282 | + <ul> |
| 283 | + <li><b>Windows Version Patch</b></li> |
| 284 | + <ul> |
| 285 | + <li><a href="https://www.patreon.com/posts/vxlang-2-0-6-0-126038998">Update Note</a></li> |
| 286 | + </ul> |
| 287 | + </ul> |
| 288 | + </div> |
| 289 | + |
| 290 | + <h2 id="2.0.5.0">2.0.5.0</h2> |
| 291 | + <div class="code-block"> |
| 292 | + <ul> |
| 293 | + <li><b>Windows Version Patch</b></li> |
| 294 | + <ul> |
| 295 | + <li><a href="https://www.patreon.com/posts/vxlang-2-0-5-0-125663569">Update Note</a></li> |
| 296 | + </ul> |
| 297 | + </ul> |
| 298 | + </div> |
| 299 | + |
| 300 | + <h2 id="2.0.4.0">2.0.4.0</h2> |
| 301 | + <div class="code-block"> |
| 302 | + <ul> |
| 303 | + <li><b>Windows Version Patch</b></li> |
| 304 | + <ul> |
| 305 | + <li><a href="https://www.patreon.com/posts/vxlang-2-0-4-0-125204064">Update Note</a></li> |
| 306 | + </ul> |
| 307 | + </ul> |
| 308 | + </div> |
| 309 | + |
| 310 | + <!-- --> |
| 311 | + |
| 312 | + <h2 id="next"> |
| 313 | + <a href="https://vxlang.github.io/news/news-10.html">Next</a> |
| 314 | + </h2> |
| 315 | + </section> |
| 316 | +</div> |
| 317 | + |
| 318 | +<footer> |
| 319 | + VxLang Project at 0x999h |
| 320 | +</footer> |
| 321 | + |
| 322 | +</body> |
| 323 | +</html> |
0 commit comments