swissChili | e392aeb | 2020-08-10 15:52:10 -0700 | [diff] [blame] | 1 | <html> |
| 2 | <head> |
| 3 | <meta name="viewport" content="width=device-width"> |
swissChili | e392aeb | 2020-08-10 15:52:10 -0700 | [diff] [blame] | 4 | <link rel="stylesheet" href="styles.css"> |
| 5 | <title>${title}</title> |
| 6 | </head> |
| 7 | <body> |
| 8 | <main class="split container"> |
| 9 | <div class="sidebar"> |
| 10 | <h2><a href="/">6502</a></h2> |
| 11 | |
| 12 | <p> |
| 13 | 6502 Toolchain written by <a href="https://github.com/swissChili">swissChili</a> |
| 14 | </p> |
| 15 | |
| 16 | <ul> |
| 17 | <li><a href="https://github.com/swissChili/6502">Git</a></li> |
swissChili | 82800a9 | 2020-08-10 19:33:17 -0700 | [diff] [blame] | 18 | <li><a href="https://builds.sr.ht/~swisschili/6502"> |
| 19 | <img src="https://builds.sr.ht/~swisschili/6502.svg"></a> |
| 20 | </li> |
swissChili | e392aeb | 2020-08-10 15:52:10 -0700 | [diff] [blame] | 21 | <li><a href="/usage.html">Basic usage</a></li> |
| 22 | <li><a href="/examples.html">Example programs</a></li> |
| 23 | <li><a href="/building.html">Building from source</a></li> |
swissChili | d3764d4 | 2020-08-10 19:47:41 -0700 | [diff] [blame] | 24 | <li><a href="/debugger.html">Debugger commands</a></li> |
swissChili | e392aeb | 2020-08-10 15:52:10 -0700 | [diff] [blame] | 25 | </ul> |
| 26 | </div> |
| 27 | <div class="body"> |
| 28 | ${body} |
| 29 | </div> |
| 30 | </main> |
| 31 | |
| 32 | <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/highlight.min.js"></script> |
| 33 | <script> |
swissChili | 4bccd44 | 2020-08-11 13:55:10 -0700 | [diff] [blame] | 34 | hljs.initHighlightingOnLoad(); |
swissChili | e392aeb | 2020-08-10 15:52:10 -0700 | [diff] [blame] | 35 | document.addEventListener('DOMContentLoaded', (event) => { |
| 36 | document.querySelectorAll('pre code').forEach((block) => { |
| 37 | hljs.highlightBlock(block); |
| 38 | }); |
| 39 | }); |
| 40 | </script> |
| 41 | </body> |
| 42 | </html> |