Mustache

Mustache is a logic-less template language we use to construct template partials so you can reuse content, reference page variables, create content areas, place forms, and place dynamic ad areas.

Here is how you can reference another template partial:

<!DOCTYPE html>
<html>
  {{> head}}
  <body>
    {{> header}}
    <main>
      some content...
    </main>
    {{> footer}}
    {{> scripts}}
  </body>
<html>