Last active
September 27, 2017 19:57
-
-
Save iign/1e32c7d485cbd4b87bb20c3471981d95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$context = Timber::get_context(); | |
$post = new TimberPost(); | |
$context['post'] = $post; | |
Timber::render( array( 'page.example.twig', 'page.twig' ), $context ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "base.twig" %} | |
{% block content %} | |
<article class="section post-type-{{post.post_type}}" id="post-{{post.ID}}"> | |
<div class="wrap"> | |
{{post.content}} | |
</div> | |
</section> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment