initial commit, yay

This commit is contained in:
Calvin Koepke 2019-05-23 10:30:31 -06:00
commit 88f688ad6d
49 changed files with 15475 additions and 0 deletions

17
functions.php Normal file
View file

@ -0,0 +1,17 @@
<?php
/**
* Kickoff theme setup and build
*/
namespace WP_Tailwind;
define( 'WP_Tailwind_VERSION', wp_get_theme()->version );
define( 'WP_Tailwind_DIR', __DIR__ );
define( 'WP_Tailwind_URL', get_template_directory_uri() );
try {
\A7\autoload( __DIR__ . '/src' );
} catch ( \Exception $e ) {
echo $e->getMessage();
die;
}