Skip to content

Commit

Permalink
feat: add initial customizability features
Browse files Browse the repository at this point in the history
  • Loading branch information
nedpals committed Feb 25, 2024
1 parent cce4749 commit f34e4a2
Show file tree
Hide file tree
Showing 95 changed files with 928 additions and 124 deletions.
Empty file modified .eslintrc
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .idea/.gitignore
100644 → 100755
Empty file.
Empty file modified .idea/codeStyles/Project.xml
100644 → 100755
Empty file.
Empty file modified .idea/codeStyles/codeStyleConfig.xml
100644 → 100755
Empty file.
21 changes: 21 additions & 0 deletions .idea/codeception.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 73 additions & 1 deletion .idea/devcon-msummit2024-landing.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified .idea/misc.xml
100644 → 100755
Empty file.
Empty file modified .idea/modules.xml
100644 → 100755
Empty file.
13 changes: 12 additions & 1 deletion .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/phpspec.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/phpunit.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified .idea/vcs.xml
100644 → 100755
Empty file.
Empty file modified .stylelintrc.json
100644 → 100755
Empty file.
Empty file modified 404.php
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
Empty file modified archive.php
100644 → 100755
Empty file.
Empty file modified composer.json
100644 → 100755
Empty file.
Empty file modified footer.php
100644 → 100755
Empty file.
12 changes: 8 additions & 4 deletions functions.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
* @package devcon-msummit2024
*/

require_once "vendor/autoload.php";

use Kucrut\Vite;
require_once __DIR__ . "/vendor/autoload.php";

if ( ! defined( '_S_VERSION' ) ) {
// Replace the version number of the theme on each release.
Expand Down Expand Up @@ -144,7 +142,7 @@ function devcon_msummit2024_widgets_init() {
function devcon_msummit2024_scripts() {
wp_enqueue_script('jquery');

Vite\enqueue_asset(
\Kucrut\Vite\enqueue_asset(
__DIR__ . '/resources/dist',
'/resources/js/main.ts',
array(
Expand Down Expand Up @@ -199,3 +197,9 @@ function devcon_msummit2024_load_fonts() {
require get_template_directory() . '/inc/jetpack.php';
}

/**
* Load Kirki customizer file.
*/
if (class_exists('Kirki')) {
require get_template_directory() . '/inc/kirki-customizer.php';
}
Empty file modified header.php
100644 → 100755
Empty file.
Loading

0 comments on commit f34e4a2

Please sign in to comment.