<?php
/**
 * Theme Functions
 *
 * @author {{author_name}}
 * @package {{slug}}
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

defined( '{{constant}}_VERSION' ) || define( '{{constant}}_VERSION', '{{theme_version}}' );
defined( '{{constant}}_DIR' ) || define( '{{constant}}_DIR', trailingslashit( get_template_directory() ) );
{{additional_constant}}

require get_parent_theme_file_path( 'inc/autoload.php' );

{{namespace}}\Init::instance();
