Skip to content

Instantly share code, notes, and snippets.

@vickonrails
Last active February 18, 2018 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vickonrails/2e7827763864817013ff4e76d9a1bddb to your computer and use it in GitHub Desktop.
Save vickonrails/2e7827763864817013ff4e76d9a1bddb to your computer and use it in GitHub Desktop.
<!-- home.hbs -->
<p> Hello I’m just a home file </p>
<!--main.hbs -->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title> {{title}} </title>
<link rel='stylesheet' href='css/style.css'/>
</head>
<body>
<header>
Nothing Here changes .
</header>
<main>
<!-- Our views get rendered and replaces the {{{body}}} variable and seems to be the -->
{{{body}}}
</main>
<footer>
Stuff right here doesn’t change either.
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment