January 2018
Beginner
658 pages
13h 10m
English
We'll start with making the maintenance.hbs file by duplicating home.hbs. Inside maintenance.hbs, all we'll do is wipe the body and add a few tags:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Some Website</title> </head> <body> </body></html>
As shown in the following code, we'll add an h1 tag to print a little message to the user:
<body> <h1></h1> </body>
We're going to use something like We'll be right back:
<body> <h1>We'll be right back</h1> </body>
Next, I can add a paragraph tag:
<body> <h1>We'll be right back</h1> <p> </p> </body>
Read now
Unlock full access