Mercurial
comparison hg-web/src/index.html @ 195:f8f5004a920a
Merging back hg-web-tip
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Tue, 27 Jan 2026 06:51:44 -0800 |
| parents | 9f4429c49733 |
| children |
comparison
equal
deleted
inserted
replaced
| 189:14cc84ba35a0 | 195:f8f5004a920a |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html lang="en"> | 2 <html lang="en"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="UTF-8"> | 4 <meta charset="UTF-8"> |
| 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> | 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 <title>Zenbu Repository</title> | 6 <title>Zenbu Repository</title> |
| 7 <link rel="stylesheet" href="/index.css"> | |
| 7 <link rel="stylesheet" href="/base.css"> | 8 <link rel="stylesheet" href="/base.css"> |
| 8 <link rel="stylesheet" href="/index.css"> | 9 |
| 9 </head> | 10 <link rel="stylesheet" href="/a11y-dark.min.css" media="(prefers-color-scheme: dark)"> |
| 10 <body> | 11 <link rel="stylesheet" href="/a11y-light.min.css" media="(prefers-color-scheme: light)"> |
| 12 | |
| 13 <link rel="preload" href="/public/fonts/more-sugar.regular.otf" as="font" type="font/otf" crossorigin> | |
| 14 <link rel="icon" type="image/svg+xml" href="/public/epi_all_colors.svg"> | |
| 15 </head> | |
| 16 <body> | |
| 11 <main> | 17 <main> |
| 12 <div class="header"> | 18 <div id="root"></div> |
| 13 <h1>Zenbu Repository</h1> | |
| 14 <p class="description">Browse and clone this mercurial repository</p> | |
| 15 </div> | |
| 16 | |
| 17 <div class="clone-info"> | |
| 18 <strong>Clone this repository:</strong><br> | |
| 19 <code>hg clone http://zenbu.babocoder.com</code> | |
| 20 </div> | |
| 21 | |
| 22 <div class="breadcrumb" id="breadcrumb"></div> | |
| 23 | |
| 24 <div class="file-list" id="fileList"></div> | |
| 25 | |
| 26 <div class="readme-section" id="readmeSection" style="display: none;"> | |
| 27 <h2>README</h2> | |
| 28 <div class="readme-content" id="readmeContent"></div> | |
| 29 </div> | |
| 30 | |
| 31 <div class="empty-state" id="emptyState" style="display: none;"> | |
| 32 <p>No files found in this directory</p> | |
| 33 </div> | |
| 34 </main> | 19 </main> |
| 35 | 20 <script type="module" src="/page.js"></script> |
| 36 <script src="/markdown_to_html.js"></script> | 21 <script src="/highlight.min.js"></script> |
| 37 <script src="/index.js"></script> | 22 </body> |
| 38 </body> | |
| 39 </html> | 23 </html> |