Installed express
This commit is contained in:
parent
66765c431a
commit
36d9c066f4
10 changed files with 809 additions and 0 deletions
3
scoreboard/views/error.hbs
Normal file
3
scoreboard/views/error.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<h1>{{message}}</h1>
|
||||
<h2>{{error.status}}</h2>
|
||||
<pre>{{error.stack}}</pre>
|
||||
2
scoreboard/views/index.hbs
Normal file
2
scoreboard/views/index.hbs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<h1>{{title}}</h1>
|
||||
<p>Welcome to {{title}}</p>
|
||||
10
scoreboard/views/layout.hbs
Normal file
10
scoreboard/views/layout.hbs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{title}}</title>
|
||||
<link rel='stylesheet' href='/stylesheets/style.css' />
|
||||
</head>
|
||||
<body>
|
||||
{{{body}}}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue