diff options
Diffstat (limited to 'html/benoit.html')
-rw-r--r-- | html/benoit.html | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/html/benoit.html b/html/benoit.html index 0e90e9d..e3a611d 100644 --- a/html/benoit.html +++ b/html/benoit.html @@ -3,56 +3,61 @@ <head> <meta charset="UTF-8"> <meta name="darkreader-lock"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="/favicon.ico" rel="icon" type="image/vnd.microsoft.icon"> <link href="/apple-touch-icon.png" rel="apple-touch-icon" type="image/png"> - <title id="title">Benoit | Achernar</title> + <title>Benoit | Achernar</title> <link href="/css/main.css" rel="stylesheet"> <noscript> <link href="/css/noScript.css" rel="stylesheet"> </noscript> + + <script src="/js/init.js" type="text/javascript"></script> </head> - <body data-page="benoit" data-theme="Dark" id="body"> + <body data-page="benoit"> <!--#include virtual="/include/header.shtml"--> <div id="page"> - <p id="pageHeading">Benoit</p> + <h1 id="anchor.about">benoit</h1> <section> <p><em>Benoit</em> is a Rust-written programme for visualising complex functions, e.g. <em>the Mandelbrot Set</em> and similar fractals.</p> <br> <x-image data-file="benoit_screenshot0"></x-image> <br> - <p>The project consists of the core <a href="https://crates.io/crates/benoit/"><span class="code">benoit</span></a> crate, from which the frontends <span class="code">benoit-cli</span> and (in the future) <span class="code">benoit-gui</span> derive.</p> + <p>The project consists of the core <a href="https://crates.io/crates/benoit/"><code>benoit</code></a> crate, from which the frontends <code>benoit-cli</code> and (in the future) <code>benoit-gui</code> derive.</p> </section> - <section> - <p class="heading">benoit-cli</p> + <h1 id="anchor.benoitCli">benoit-cli</h1> - <p>The <span class="code">benoit-cli</span> executable can render and animate using <a href="https://en.wikipedia.org/wiki/TOML/">TOML</a> files right from the commandline.</p> + <section> + <p>The <code>benoit-cli</code> executable can render and animate using <a href="https://en.wikipedia.org/wiki/TOML/">TOML</a> files right from the commandline.</p> <br> <x-image data-file="benoit_screenshot1"></x-image> </section> - <section> - <p class="heading">benoit-gui</p> + <h1 id="anchor.benoitGui">benoit-gui</h1> - <p>The <span class="code">benoit-gui</span> executable, on the other hand, allows viewing fractals in realtime. Do note, however, that this frontend is currently unimplemented.</p> + <section> + <p>The <code>benoit-gui</code> executable, on the other hand, allows viewing fractals in realtime. Do note, however, that this frontend is currently unimplemented.</p> <br> <x-image data-file="benoit_screenshot2"></x-image> </section> - <section> - <p class="heading">Docs</p> + <h1 id="anchor.docs">docs</h1> - <p>Documentation for the main library can be found on <a href="https://docs.rs/benoit/latest/benoit/"><span class="code">docs.rs</span></a>.</p> + <section> + <p>Documentation for the main library can be found on <a href="https://docs.rs/benoit/latest/benoit/"><code>docs.rs</code></a>.</p> </section> <!--#include virtual="/include/footer.shtml"--> </div> - - <!--#include virtual="/include/initScripts.shtml"--> </body> + + <script type="text/javascript"> + init(); + </script> </html> |