hbs templates are real html pages
This commit is contained in:
parent
198f145c7b
commit
487a3c160c
1 changed files with 18 additions and 5 deletions
|
@ -1,5 +1,18 @@
|
|||
<h1>{{name}}</h1>
|
||||
<hr />
|
||||
<main>
|
||||
{{{readme.html}}}
|
||||
</main>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Wroten - {{name}}</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="Joe Wroten">
|
||||
<meta name="description" content="Web engineer realizing the best tools to communicate valuable information to the people who need it.">
|
||||
<meta name="keywords" content="developer,designer,engineer,web,portfolio">
|
||||
<meta name="viewport" content="width=device-width; height=device-height; maximum-scale=1.4; initial-scale=1.0; user-scalable=yes">
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{name}}</h1>
|
||||
<hr />
|
||||
<main>
|
||||
{{{readme.html}}}
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue