Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrickaby committed Sep 24, 2021
0 parents commit ccc7f5f
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 0 deletions.
13 changes: 13 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "webdevstudios/wds-headless-theme",
"description": "WordPress theme for the Next.js WordPress Starter.",
"homepage": "https://github.com/WebDevStudios/nextjs-wordpress-starter",
"type": "wordpress-theme",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WebDevStudios",
"email": "contact@webdevstudios.com"
}
]
}
10 changes: 10 additions & 0 deletions functions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php
/**
* Theme functionality.
*
* @author WebDevStudios
* @package wds-headless-theme
* @since 1.0.0
*/

// Theme functionality here.
10 changes: 10 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php
/**
* Redirect theme requests to frontend.
*
* @author WebDevStudios
* @package wds-headless-theme
* @since 1.0.0
*/

header( 'Location:' . HEADLESS_FRONTEND_URL, true, 303 );
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
Theme Name: WDS Headless Theme
Theme URI: https://webdevstudios.com
Description: This theme supports the JAMStack-powered front-end. Do not deactivate!
Author: WebDevStudios <contact@webdevstudios.com>
Author URI: https://webdevstudios.com/
Version: 1.0.0
Requires at least: 5.6
Tested up to: 5.8
Requires PHP: 7.4
Text Domain: wds
*/
26 changes: 26 additions & 0 deletions theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"global": {
"settings": {
"typography": {
"customFontSize": false,
"customLineHeight": false,
"dropCap": false,
"fontSizes": []
},
"color": {
"custom": false,
"customGradient": false,
"gradients": [],
"palette": []
}
}
},
"core/paragraph": {
"settings": {
"color": {
"custom": false,
"customGradient": false
}
}
}
}

0 comments on commit ccc7f5f

Please sign in to comment.