12 lines
256 B
HTML
12 lines
256 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>{{ cookiecutter.project_name }}</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>{{ cookiecutter.project_name }}</h1>
|
||
|
<p>by {{ cookiecutter.author }}</p>
|
||
|
</body>
|
||
|
</html>
|