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

892 B · 20 lines · HTML Raw History
 1{% extends "base.html" %}
 2{% block title %}Something broke{% 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 16,30 24,24 32,40" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
 9      <line x1="36" y1="44" x2="56" y2="24" stroke="currentColor" stroke-width="3.5" stroke-linecap="round"/>
10      <line x1="36" y1="24" x2="56" y2="44" stroke="currentColor" stroke-width="3.5" stroke-linecap="round"/>
11    </svg>
12    <h1>Page failed to render</h1>
13    <p>Something on this page is wrong. Head back to <a href="/">the markets dashboard</a>{% if path %}, or try the <a href="{{ path }}">previous URL</a>{% endif %}.</p>
14    {% if detail %}
15    <pre class="empty__detail">{{ detail }}</pre>
16    {% endif %}
17  </section>
18</div>
19{% endblock %}