This commit is contained in:
Jeremy Rangel
2024-11-13 16:25:37 -08:00
commit 8de1a43a8c
5 changed files with 39 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
# Ignore WordPress core files
wp-admin/
wp-includes/
# Ignore theme-specific generated files and folders
.DS_Store
node_modules/
.env
build/
dist/
package-lock.json
yarn.lock
# Ignore the WordPress content/uploads folder
wp-content/uploads/

0
functions.php Normal file
View File

2
index.php Normal file
View File

@ -0,0 +1,2 @@
<?php
// Silence is golden.

6
style.css Normal file
View File

@ -0,0 +1,6 @@
/*
Theme Name: Local Content Pro
Theme URI: https://localcontentpro.com
Description: A simple Block Theme for local content publishers.
Version: 1.0
*/

16
theme.json Normal file
View File

@ -0,0 +1,16 @@
{
"version": 2,
"settings": {
"color": {
"custom": true,
"palette": []
},
"typography": {
"customFontSize": true
},
"layout": {
"contentSize": "1200px",
"wideSize": "1600px"
}
}
}