Skip to content

Commit

Permalink
feat(theme): Initial theme framework and build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
WildPress committed Oct 21, 2022
0 parents commit 71674b4
Show file tree
Hide file tree
Showing 35 changed files with 3,407 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release
on:
push:
branches:
- main
- next
- beta
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 16
- run: yarn --frozen-lockfile
- run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
24 changes: 24 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"branches": [
"main", "next", "beta"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"assets": [
"dist",
"docs/CHANGELOG.md"
]
}
]
]
}
Binary file added assets/fonts/Inter-Black.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-BlackItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-Bold.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-BoldItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-ExtraBold.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-ExtraBoldItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-ExtraLight.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-ExtraLightItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-Italic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-Light.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-LightItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-Medium.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-MediumItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-SemiBold.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-SemiBoldItalic.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-Thin.woff2
Binary file not shown.
Binary file added assets/fonts/Inter-ThinItalic.woff2
Binary file not shown.
Empty file added docs/CHANGELOG.md
Empty file.
Empty file added functions.php
Empty file.
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "stoicwp",
"version": "1.0.0",
"description": "StoicWP Minimal WordPress Theme",
"main": "index.js",
"repository": "https://github.com/WildPress/stoicwp-minimal-theme",
"author": "WildPress",
"license": "MIT",
"private": true,
"scripts": {
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^19.0.5"
}
}
Empty file added parts/footer.html
Empty file.
Empty file added parts/header.html
Empty file.
Empty file added patterns/example.html
Empty file.
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.
15 changes: 15 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
Theme Name: Stoic WP - Minimal Blog Theme
Theme URI: https://wildpress.co/themes/stoic-minimal-blog-theme
Author: WildPress
Author URI: https://wildpress.co/
Description: A minimal blog theme for WordPress. Designed for Full Site Editing and Block Editor Support.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stoic-wp
*/
Empty file added templates/404.html
Empty file.
Empty file added templates/archive.html
Empty file.
Empty file added templates/index.html
Empty file.
Empty file added templates/singular.html
Empty file.
Empty file added theme.json
Empty file.
Loading

0 comments on commit 71674b4

Please sign in to comment.