Skip to content

Instantly share code, notes, and snippets.

View zfbpb's full-sized avatar

Zlatko Furčić zfbpb

  • 14:23 (UTC +02:00)
View GitHub Profile
@zfbpb
zfbpb / base.twig
Last active July 26, 2024 12:13 — forked from jarednova/base.twig
Timber Hello World
{# This is a Twig comment, it won't output to the browser #}
<html>
<head>
<title>{{ wp_title }}</title>
</head>
{% block content %}
<!-- This will be overwritten by the content block in the inheriting .twig file -->
{% endblock %}
</html>