A WordPress theme for 73k.us that utilizes Bootstrap 5, Webpack 5, MaterialDesignIcons via SVG sprite, + PurgeCSS.
Find a file
2021-07-02 10:44:02 -04:00
assets initial commit, yay 2019-05-23 10:30:31 -06:00
content-templates forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
page-templates initial commit, yay 2019-05-23 10:30:31 -06:00
src forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
.gitignore remove tracked vendor files 2019-10-24 21:06:55 -06:00
404.php initial commit, yay 2019-05-23 10:30:31 -06:00
archive.php forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
comments.php forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
composer.json add composer and update 2019-10-24 21:06:18 -06:00
composer.lock add composer and update 2019-10-24 21:06:18 -06:00
footer.php forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
functions.php forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
header.php forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
index.php forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
package-lock.json package-lock updated post npm install 2021-07-02 10:27:13 -04:00
package.json forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
README.md forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
screenshot.png initial commit, yay 2019-05-23 10:30:31 -06:00
search.php initial commit, yay 2019-05-23 10:30:31 -06:00
sidebar.php initial commit, yay 2019-05-23 10:30:31 -06:00
style.css forked, cloned, performed find/replace per 'how to get started' in fork parent 2021-07-02 10:24:48 -04:00
tailwind.js initial commit, yay 2019-05-23 10:30:31 -06:00
webpack.config.js modified webpack browsersync config to work with local wp_dev docker setup 2021-07-02 10:44:02 -04:00

WordPress Tailwind Starter Theme

A minimalistic WordPress starter theme, based on Tailwind and PurgeCSS.

Requirements

How to get started

  1. Clone or download the project onto your themes directory (./wp-content/themes)
  2. Run a find/replace for the following strings:
  • wp-73k
  • WP_73k
  • wp_73k_
  1. Run composer install
  2. Run npm install
  3. Update the BrowserSyncPlugin configuration in webpack.config.js to the domain of your local installation.
  4. Run npm start to begin development server.

Webpack

The theme uses Webpack as its bundler with ES6 modules for JavaScript files. It also compresses images found in src automatically, and maps images to the appropriate destination through the @images alias. For example, @images/example.jpg would be compiled to ../images/example.jpg.

Deployment

npm run build

This will run both a production and development set of webpack tasks. The enqueue hook will load the correct version of the JS file, based on whether your development/staging server's SCRIPT_DEBUG constant is set to true.

Tailwind

Using the tailwind.js file, you can customize Tailwind's default styles before things get compiled. For more information on configuration, see detailed documentation on Tailwind.

PurgeCSS

WP Tailwind uses PurgeCSS to remove unused styles from the production build. It scans your project directory for strings that match SCSS declarations. You can modify the directories to search for in the webpack.config.js file. Always check your production build to make sure styles you were developing with compiled correctly.