Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

bsclifton/blog.clifton.io

Repository files navigation

blog.clifton.io

WordPress theme customizations for https://blog.clifton.io/

Building

To get started, you'll need to install grunt and bower:

npm install -g grunt-cli bower

You can then clone the repo and install npm and bower dependencies:

git clone git@github.com:clifton-io/blog.clifton.io.git
cd blog.clifton.io
npm install && bower install
grunt

Deploying

Create a secret.json file with the hosting info:

{
  "production": {
    "host": "put-ssh-host-here",
    "username": "put-username-here",
    "port": "22"
  }
}

Next, edit the deploy_path in the Gruntfile.js to have the correct location for the WordPress themes directory:

{
  environments: {
    options: {
      deploy_path: '/home/<%= secret.production.username %>/blog.clifton.io/wp-content/themes'
    }
  }
}

Then build and deploy with the following command:

grunt deploy

Once the theme is deployed, you can activate it like so:

  1. Log into the WordPress Administration Panel for your site.
  2. Select the Appearance panel, then Themes.
  3. Once you are on the themes page, click on the Activate button for the blog-clifton-io theme.

License

Much of the work for this theme is derived from the Simple Bootstrap theme, which was released under the terms of the MIT license (copyright 2015 Nicolas Vanhoren).

This forked theme is also released under the terms of the MIT license.

Releases

No releases published

Packages

No packages published