Handlebars Overview | Yext Hitchhikers Platform

What You’ll Learn

In this section, you will learn:

  • Basic structure of Handlebars expressions
  • How to construct comments in Handlebars

What is Handlebars?

Handlebars is a templating language. This means it takes data, in the form of JSON, and combines it with a template to generate an output file. Think of it like a mail merge – you have a templated letter and you combine that with personalized information to generate your unique emails or letters to all of your customers. Handlebars templates look like normal text with “Handlebars Expressions” embedded in them.

Example Handlebars template:

<p>This is the hitchhiker profile of {{firstName}} {{lastName}}.</p> 

Handlebars templates can be used to generate any type of file, like HTML, JavaScript, Markdown, or plain text. In order to use Handlebars templates, you need to install the Handlebars package - thankfully, you’ll be working with repositories (aka, Search sites) that already have Handlebars installed.

Handlebars Expressions

Handlebars Expressions are the text that is surrounded by two opening curly braces {{ and two closing curly braces }}. When the Handlebars template is executed, the expressions are replaced with values from the input data.

light bulb
Note
It doesn’t matter if the expression has spaces between it and the delimiter - for example, {{firstName}} and {{ firstName }} will function the same.

Simple Expressions

First, we’ll start with some JSON data as our input:

{
	"firstName": "Bryan",
	"lastName": "Landen"
}

Then we’ll write a Handlebars template to show the data from the JSON input in HTML:

<h1>Hitchhiker Profile</h1>
<ul>
	<li>First name: {{firstName}}</li>
	<li>Last name: {{lastName}}</li>
</ul>

Result

<h1>Hitchhiker Profile</h1>
<ul>
	<li>First name: Bryan</li>
	<li>Last name: Landen</li>
</ul>

Notice that the expressions - things surrounded with two curly braces - were replaced with the input data.

Comments

Comments are helpful in templates because they can provide supplemental information like context or usage to the Developer or Admin without it appearing in the output file that is seen by the end users.

Template

<!-- This is an HTML comment that will appear in the final output -->
{{! This comment will not appear in the output }}
{{!-- 
  This comment can include Handlebars language constructs, making it perfect for commenting out undesired sections of the template 
  <h1>{{firstName}}'s Favorites</h1>
  <table>
    <tr>
      <td>Food</td>
      <td>{{favorites.food}}</td>
    </tr>
    <tr>
      <td>Color</td>
      <td>{{favorites.color}}</td>
    </tr>
  </table>
--}}

Result

<!-- This is an HTML comment that will appear in the final output -->
light bulb
Want to learn more?
You’ll learn the background you need for using Handlebars within Yext products in this module, but for more information, check out the official Handlebars documentation !
unit Quiz
+20 points
Daily Quiz Streak Daily Quiz Streak: 0
Quiz Accuracy Streak Quiz Accuracy Streak: 0
    Error Success Question 1 of 3

    What is a Handlebars expression?

    Error Success Question 2 of 3

    Select the valid ways of leaving comments that do not appear in the HTML of the output file. (Select all that apply)

    Error Success Question 3 of 3

    Does it matter if the expression has spaces between it and the delimiter?

    Soon you'll be your brand's hero! 🎓

    You've already completed this quiz, so you can't earn more points.You completed this quiz in 1 attempt and earned 0 points! Feel free to review your answers and move on when you're ready.
1st attempt
0 incorrect
Feedback