Mercurial
comparison hg-web/src/index.html @ 190:a2725419f988 hg-web
Updated so that bun builds will with already existing js files.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sat, 24 Jan 2026 21:06:42 -0800 |
| parents | fed99fc04e12 |
| children | a06710325c30 |
comparison
equal
deleted
inserted
replaced
| 188:32ce881452fa | 190:a2725419f988 |
|---|---|
| 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="/a11y-dark.min.css" media="(prefers-color-scheme: dark)"> | |
| 8 <link rel="stylesheet" href="/a11y-light.min.css" media="(prefers-color-scheme: light)"> | |
| 9 <script src="/highlight.min.js"></script> | |
| 7 <link rel="icon" type="image/svg+xml" href="/public/epi_all_colors.svg"> | 10 <link rel="icon" type="image/svg+xml" href="/public/epi_all_colors.svg"> |
| 8 </head> | 11 </head> |
| 9 <body> | 12 <body> |
| 10 <main> | 13 <main> |
| 11 <div id="root"></div> | 14 <div id="root"></div> |
| 12 | |
| 13 <!-- <div class="header"> | |
| 14 <h1>Zenbu Repository</h1> | |
| 15 <p class="description">Browse and clone this mercurial repository</p> | |
| 16 </div> | |
| 17 | |
| 18 <div class="clone-info"> | |
| 19 <strong>Clone this repository:</strong><br> | |
| 20 <code>hg clone http://zenbu.babocoder.com/repo</code> | |
| 21 </div> | |
| 22 | |
| 23 <div class="breadcrumb" id="breadcrumb"></div> | |
| 24 | |
| 25 <div class="file-list" id="fileList"></div> | |
| 26 | |
| 27 <div class="readme-section" id="readmeSection" style="display: none;"> | |
| 28 <h2>README</h2> | |
| 29 <div class="readme-content" id="readmeContent"></div> | |
| 30 </div> | |
| 31 | |
| 32 <div class="empty-state" id="emptyState" style="display: none;"> | |
| 33 <p>No files found in this directory</p> | |
| 34 </div> --> | |
| 35 </main> | 15 </main> |
| 36 | 16 <script type="module" src="/page.js"></script> |
| 37 <script src="/markdown_to_html.js"></script> | 17 </body> |
| 38 <script src="/page.js"></script> | |
| 39 </body> | |
| 40 </html> | 18 </html> |