Added about page.

This commit is contained in:
2025-07-29 18:51:29 +02:00
parent 6611999b5f
commit 6b2004cb27
4 changed files with 117 additions and 7 deletions

View File

@@ -62,11 +62,12 @@
<td class="financials">{{ ticker.market_cap | format_mc }}</td>
<td class="financials">
{% if ticker.closing_price %}
<a href="https://finance.yahoo.com/quote/{{ ticker.symbol }}/" target="_blank" title="View on Yahoo Finance">
${{ "%.2f"|format(ticker.closing_price) }}
</a>
<a href="https://finance.yahoo.com/quote/{{ ticker.symbol }}/" target="_blank"
title="View on Yahoo Finance">
${{ "%.2f"|format(ticker.closing_price) }}
</a>
{% else %}
N/A
N/A
{% endif %}
</td>
</tr>
@@ -77,9 +78,17 @@
{% endfor %}
</tbody>
</table>
<footer>
<div class="brand-name">r/rstat</div>
<div class="brand-subtitle">visit us for more.</div>
<footer style="margin-top: 3rem; text-align: center;">
<div class="brand-name">
<a href="https://www.reddit.com/r/rstat/" target="_blank">
r/rstat
</a>
</div>
<div class="brand-subtitle">
<a href="https://www.reddit.com/r/rstat/" target="_blank">
visit us for more.
</a>
</div>
</footer>
</div>
{% endblock %}