Loading...
There isn't any specific variables for layout.html. This page is usually extended by all other pages, providing your stores base layout structure.
An example of using layout.html can be seen below:
<!DOCTYPE html> <html> <body> {% block content %}{% endblock %} {# The content of checkout.html will be shown #} </body> </html>
{% extends "layout.html" %} {% block content %} Hello, world! {% endblock %}