
Version 1.0 release of Boarders. `overflow.tar.gz` is an archive of the project where I discovered a stack overflow due to a bug in Actix, or Rust itself, more investigation is needed. In the future `src/api/` needs to be rewritten to be more reusable so code isn't copy/pasted from there to `src/html/` for the frontend. In v1.1.0 page generation should be handled by a `PageBuilder` that is instantiated once for each thread. This is to dramatically reduce the number of HTML blobs scattered around in `src/html/`
18 lines
548 B
HTML
18 lines
548 B
HTML
<div id="nav" class="bar">
|
|
<img class="arrow up" src="https://static.solow.xyz/boards/arrow.svg">
|
|
<img class="arrow down" style="bottom: 0; position: absolute; right: 0; margin-right: 9; margin-bottom: 28;" src="https://static.solow.xyz/boards/arrow.svg">
|
|
<div class="vertical-center">
|
|
<!--<img class="orange-arrow right" src="https://static.solow.xyz/boards/arrow.svg">-->
|
|
<a href="../">
|
|
Next<br>
|
|
Page
|
|
</a>
|
|
<hr>
|
|
<a href="../">
|
|
Prev<br>
|
|
Page
|
|
</a>
|
|
<!--<img class="orange-arrow left" src="https://static.solow.xyz/boards/arrow.svg">-->
|
|
</div>
|
|
</div>
|