.. _the-planner-header: The Planner Header ================== The header for the page contains navigation links and options for the module planner such as what language you'd like the website to you and a helpful "Clear Selected" modules button. .. highlight:: liquid ================================= Choosing Appropriate Translations ================================= We need to make sure we choose the right set of translations for all our titles and headers, so like above it's just a case of searching the database for the right record:: {% for l in site.data.language %} {% if page.lang == l.short %} {% assign lang = l%} {% endif %} {% endfor %} ================ Writing the HTML ================ We put everything inside a header element and start off with adding the navigation links::