timber / starter-theme

The "_s" for Timber: a dead-simple theme that you can build anything from
MIT License
818 stars 278 forks source link

feat: update template basis #156

Closed Levdbas closed 4 months ago

Levdbas commented 5 months ago

Related:

Issue

Since the creation of the starter theme a lot has happened in PHP, WordPress and Timber. I want to make the starter-theme a more modern starting point for custom theme development.

Especially the base.twig and the need for the header and footer bothered me.

Solution

This particular PR focusses on removing the need for the header.php and footer.php by calling the proper actions from the twig files. While working on the base.twig I renamed html-header.twig to head.twig, moved some code tags around, removed some obsolete tags and made it overall a better starting point.

Impact

people coming from older versions of the timber-theme need to recalibrate a bit on how to work with this new setup.

Usage Changes

No

Considerations

I also removed some strange code blocks that, in my opinion, were distracting. For example the top

{% block html_head_container %}
{% endblock %}

has been renamed and the the inner block has been removed. We could move that block to the head.twig file if needed. But if you are customizing the theme in such a way, you know what you are doing and can probably do it yourself?

Testing

no