| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html lang="en" data-base-path="/cpp-httplib">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Cookbook - cpp-httplib</title>
- <link rel="stylesheet" href="/cpp-httplib/css/main.css">
- <script>
- (function() {
- var t = localStorage.getItem('preferred-theme');
- if (!t) t = window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark';
- if (t === 'light') document.documentElement.setAttribute('data-theme', 'light');
- })();
- </script>
- </head>
- <body>
- <header class="header">
- <div class="header-inner">
- <a href="/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>
- <div class="header-spacer"></div>
- <nav class="header-nav">
- <a href="/cpp-httplib/en/">Home</a>
- <a href="/cpp-httplib/en/tour/">Tour</a>
- <a href="https://github.com/yhirose/cpp-httplib">GitHub</a>
- </nav>
- <div class="header-tools">
- <button class="theme-toggle" aria-label="Toggle theme"></button>
- <div class="lang-selector">
- <button class="lang-btn" aria-label="Language">EN</button>
- <ul class="lang-popup">
-
- <li><a href="#" data-lang="en">EN</a></li>
-
- <li><a href="#" data-lang="ja">JA</a></li>
-
- </ul>
- </div>
- </div>
- <button class="sidebar-toggle" aria-label="Menu">☰</button>
- </div>
- </header>
-
- <div class="layout has-sidebar">
-
- <aside class="sidebar">
- <nav class="sidebar-nav">
-
- <div class="nav-section">
- <a href="/cpp-httplib/en/cookbook/" class="nav-section-title active">Cookbook</a>
-
- </div>
-
- </nav>
- </aside>
- <main class="content">
- <article>
- <h1>Cookbook</h1>
- <p>This section is under construction.</p>
- <p>Check back soon for a collection of recipes organized by topic.</p>
- </article>
- </main>
- </div>
- <footer class="footer">
- © 2026 yhirose. All rights reserved.
- </footer>
- <script src="/cpp-httplib/js/main.js"></script>
- </body>
- </html>
|