Skip to content

Commit 2b33f13

Browse files
committed
Move one more title
1 parent 15f9b52 commit 2b33f13

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

hello_app/templates/hello_there.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='site.css') }}" />
6-
<title>{{ title }}</title>
6+
<title>Hello, Flask</title>
77
</head>
88
<body>
99
<span class="message">Hello there, {{ name }}!</span> It's {{ date.strftime("%A, %d %B, %Y at %X") }}.

hello_app/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def contact():
1818
def hello_there(name):
1919
return render_template(
2020
"hello_there.html",
21-
title='Hello, Flask',
2221
name=name,
2322
date=datetime.now()
2423
)

0 commit comments

Comments
 (0)