repos
/ finance-rust master

finance-rust

mirror archived upstream

Single-binary self-hosted market watcher for stocks, ETFs, indexes, and futures: live charts, key stats, fundamentals, SEC filings, and SSE streaming.

axumdockerfinancerustself-hostedsqlitestocksvite

565 B · 16 lines · HTML Raw History
 1{% extends "base.html" %}
 2{% block title %}Not found{% endblock %}
 3
 4{% block main %}
 5<div class="wrap">
 6  <section class="empty">
 7    <svg viewBox="0 0 64 64" fill="none" aria-hidden="true">
 8      <polyline points="4,20 18,34 28,26 44,50 52,40 60,52" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
 9      <circle cx="60" cy="52" r="3.6" fill="currentColor"/>
10    </svg>
11    <h1>Page not found</h1>
12    <p>That route does not exist. Head back to <a href="/">the markets dashboard</a>.</p>
13  </section>
14</div>
15{% endblock %}