Serving HTML Templates

This commit is contained in:
Muyao CHEN
2024-06-26 18:10:56 +02:00
parent 4eefdfe47c
commit ab6184e675
3 changed files with 37 additions and 24 deletions

15
templates/about.page.tmpl Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<h1>This is the about page</h1>
</body>
</html>

15
templates/home.page.tmpl Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<h1>This is the home page</h1>
</body>
</html>