base.html 337 B

1234567891011121314
  1. <html>
  2. <head>
  3. {% if title %}
  4. <title>{{ title }} - Microblog</title>
  5. {% else %}
  6. <title>Welcome to Microblog</title>
  7. {% endif %}
  8. </head>
  9. <body>
  10. <div>Microblog: <a href="/index">Home</a></div>
  11. <hr>
  12. {% block content %}{% endblock %}
  13. </body>
  14. </html>