You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
320 B
19 lines
320 B
<?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();
|
|
|