The main layout function. {% func layout(css, scripts, title, contents, bodyscripts string) %} {% stripspace %} {% if len(css) == 0 %} {% else %} {%s= css %} {% endif %} {% if len(scripts) != 0 %} {%s= scripts %} {% endif %} {% if len(title) == 0 %} Burning Rubber Paste {% else %} {%s= title %} {% endif %}
{% if len(contents) != 0 %} {%s= contents %} {% endif %}
{% if len(bodyscripts) != 0 %} {%s= bodyscripts %} {% endif %} {% endstripspace %} {% endfunc %}