cs50/src9/hello8/templates/greet.html

8 lines
124 B
HTML

{% extends "layout.html" %}
{% block body %}
hello, {% if name %}{{ name }}{% else %}world{% endif %}
{% endblock %}