index.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html lang="en" data-base-path="&#x2F;cpp-httplib">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Cookbook - cpp-httplib</title>
  7. <link rel="stylesheet" href="&#x2F;cpp-httplib/css/main.css">
  8. <script>
  9. (function() {
  10. var t = localStorage.getItem('preferred-theme');
  11. if (!t) t = window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark';
  12. if (t === 'light') document.documentElement.setAttribute('data-theme', 'light');
  13. })();
  14. </script>
  15. </head>
  16. <body>
  17. <header class="header">
  18. <div class="header-inner">
  19. <a href="&#x2F;cpp-httplib/en/" class="header-title">cpp-httplib <span style="font-size:0.75em;font-weight:normal;margin-left:4px">v0.35.0</span></a>
  20. <div class="header-spacer"></div>
  21. <nav class="header-nav">
  22. <a href="&#x2F;cpp-httplib/en/">Home</a>
  23. <a href="&#x2F;cpp-httplib/en/tour/">Tour</a>
  24. </nav>
  25. <div class="header-tools">
  26. <button class="theme-toggle" aria-label="Toggle theme"></button>
  27. <div class="lang-selector">
  28. <button class="lang-btn" aria-label="Language">EN</button>
  29. <ul class="lang-popup">
  30. <li><a href="#" data-lang="en">EN</a></li>
  31. <li><a href="#" data-lang="ja">JA</a></li>
  32. </ul>
  33. </div>
  34. </div>
  35. <button class="sidebar-toggle" aria-label="Menu">&#9776;</button>
  36. </div>
  37. </header>
  38. <div class="layout has-sidebar">
  39. <aside class="sidebar">
  40. <nav class="sidebar-nav">
  41. <div class="nav-section">
  42. <a href="&#x2F;cpp-httplib&#x2F;en&#x2F;cookbook&#x2F;" class="nav-section-title active">Cookbook</a>
  43. </div>
  44. </nav>
  45. </aside>
  46. <main class="content">
  47. <article>
  48. <h1>Cookbook</h1>
  49. <p>This section is under construction.</p>
  50. <p>Check back soon for a collection of recipes organized by topic.</p>
  51. </article>
  52. </main>
  53. </div>
  54. <footer class="footer">
  55. &copy; 2026 yhirose. All rights reserved.
  56. </footer>
  57. <script src="&#x2F;cpp-httplib/js/main.js"></script>
  58. </body>
  59. </html>