20 lines
320 B
PHP
20 lines
320 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Functions and definitions
|
||
|
*
|
||
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||
|
* @link https://github.com/timber/starter-theme
|
||
|
*/
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Timber\Timber;
|
||
|
|
||
|
// Load Composer dependencies.
|
||
|
require_once __DIR__ . '/vendor/autoload.php';
|
||
|
|
||
|
Timber::init();
|
||
|
|
||
|
new StarterSite();
|