Rename title in template files (#322)

This commit is contained in:
Jonathan Zernik 2020-10-24 23:24:22 -04:00 committed by GitHub
parent 79d7a45e32
commit aa11e0180f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,14 @@
<html>
<head>
{% if title %}
<title>{{ title }} - Microblog</title>
<title>{{ title }} - Squeaknode</title>
{% else %}
<title>Welcome to Microblog</title>
<title>Welcome to Squeaknode</title>
{% endif %}
</head>
<body>
<div>
Microblog:
Squeaknode:
<a href="{{ url_for('index') }}">Home</a>
{% if current_user.is_anonymous %}
<a href="{{ url_for('login') }}">Login</a>