vweb: use <head> instead of <header> in the html templates (#18516)

This commit is contained in:
Turiiya 2023-06-22 10:11:02 +02:00 committed by GitHub
parent 8b25c4c9a3
commit af4e113f6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

View file

@ -1,7 +1,7 @@
<html>
<header>
<head>
<title>V Blog</title>
</header>
</head>
<body>
user id = @app.user_id <br>
@for article in articles

View file

@ -1,7 +1,7 @@
<html>
<header>
<head>
<title>V Blog</title>
</header>
</head>
<body>
<form action='/new_article' method='post'>
<input type='text' placeholder='Title' name='title'> <br>