Link to project - https://www.codecademy.com/courses/build-interactive-websites/projects/musicon
I believe something has gone wrong after following step 40 of 42. Once I had finished writing the handlebars template the next step was to delete the html code as the handlebars code would provide the information. But once I deleted the html code and refreshed the page everything disappeared and I can’t seem to find where I went wrong in the handlebars code for it not to show up. Below is my main.js code and my store.html code. If anyone can help it would be really appreciated.
main.js -
const context = {
title: ‘Welcome to Musicon’,
body: ‘Musicon is a budding musical storefront with a mission to share the joy of music. These magnificent auditory tools are designed with musical creators, like you, in mind. Hobbyists, beginners, and experts alike can appreciate the resplendent sounds supplied by each and every instrument we carry. Join us in delivering the euphoric vibrations of melodia to the citizens of the world!’,
instruments: [
{
image: ‘https://s3.amazonaws.com/codecademy-content/courses/learn-handlebars/musicon/electronic-keyboard.png’,
name: ‘Electronic Keyboard’,
description: ‘A piano welcomed to the 21th century. Pianists celebrate the compact form factor and the diversity of synthesized rhythms all in one masterful musical machine.’,
price: ‘$1,999.00’,
sale: ‘$1,699.89’
},
{
image: ‘https://s3.amazonaws.com/codecademy-content/courses/learn-handlebars/musicon/electric-guitar.png’,
name: ‘Electric Guitar’,
description: 'Join the legends of the '50s and ‘60s when the marriage of guitar and electricity created the most influential instrument of a generation. Note: picks sold separately.’,
price: ‘$599.99’
},
{
image: ‘https://s3.amazonaws.com/codecademy-content/courses/learn-handlebars/musicon/bass-guitar.png’,
name: ‘Bass Guitar’,
description: ‘Experience the embodiment of funkadelic frequencies that is the bass guitar. Let the deep low notes of the bass guitar resonate with heartbeats everywhere.’,
price: ‘$624.99’
},
{
image: ‘https://s3.amazonaws.com/codecademy-content/courses/learn-handlebars/musicon/drum-kit.png’,
name: ‘Drum Kit’,
description: ‘Ever thought, “one instrument isn’t enough?” Find an answer in the drum kit. Coordinate a collections of drums and cymbals to dictate the rhythm of musical masterpiece.’,
price: ‘$649.00’,
sale: ‘$349.00’
}
]
};
const templateElement = document.getElementById(‘templateHB’);
const templateSource = templateElement.innerHTML;
const template = Handlebars.compile(templateSource);
const compiledHtml = template(context);
document.getElementById(‘information’).innerHTML = compiledHtml;
store.html -
MusiconMusicon
<nav>
<ul class="navbar">
<li class="current">
<a href="index.html">Home</a>
</li>
<li>
<a href="store.html">Store</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</section>
</header>
<article id="showcase">
<section id="information" class="container">
</section>
</article>
<footer>
<p>© Musicon 2018</p>
</footer>
<script src="public/main.js"></script>