CS50_Labs/Lab9/finance/templates/quoted.html

10 lines
168 B
HTML
Raw Normal View History

2024-08-09 17:43:54 +00:00
{% extends "layout.html" %}
{% block title %}
Quoted
{% endblock %}
{% block main %}
<p> A share of {{name}} ({{symbol}}) costs {{price}} </p>
{% endblock %}