I'm new to Mustache.
Many templating languages (e.g., Django / Jinja) will let you extend a "parent" template like so...
base.html
<html><head></head>
<body>
{% block content %}{% endblock %}
</body>
</html>
frontpage.html
{% extends "base.html" %}
{% block content %}<h1>Foobar!</h1>{% endblock %}
I'm aware of Mustache's partials (e.g., {{>content}}), but those seem to be just includes.
Does template extension exist for Mustache? Or, failing that, is there at least some design pattern that effectively turns includes into template extension equivalents.