index.html 182 B

12345678
  1. {% extends 'base.html' %}
  2. {% block title %}Frog{% endblock %}
  3. {% block content %}
  4. <h1>hello world!</h1>
  5. <img src="{{ url_for('static',filename='pictures/a.png') }}">
  6. {% endblock %}