Simple Texture is a gem-based responsive simple texture styled Jekyll theme for Jekyll 3.3 or above, which can also be forked as a boilerplate for older versions of Jekyll.
Installation
As a Jekyll theme gem (Jekyll >= 3.3)
If you are creating a new website or blog, please follow the commands below first:
-
Install Jekyll and Bunlder
gem install jekyll bundler -
Create a new Jekyll app
jekyll new jekyllapp -
Enter the new directory
cd jekyllapp
Then for newly created or existing Jekyll app,
-
Install Bundler if haven’t done so.
gem install bundler -
Remove Jekyll auto-generated default pages
about.mdandindex.md. -
Download the respository here and locate
starter-kitfolder, or downloadstarter-kitfolder directly here. -
Put everything in the
starter-kitin the root directory, i.e.jekyllappin this example. -
Run
bundle installto install dependencies. -
Run Jekyll with
bundle exec jekyll serve -
Hack away at
https://localhost:4000!
As a fork
-
Fork the repo here
-
Clone the repo just forked.
git clone git@github.com:[YOUR_USERNAME]/jekyll-theme-simple-texture.git -
Delete
starter-kitfolder andjekyll-theme-simple-texture.gemspecfile (they’re for people installing via gem) -
Install Bundler if haven’t done so.
gem install bundler -
Update the
Gemfileto look like the following:
source "https://rubygems.org"
gem 'jekyll'
group :jekyll_plugins do
gem 'jekyll-feed'
gem 'jekyll-redirect-from'
gem 'jekyll-seo-tag'
gem 'jekyll-sitemap'
end
-
Run
bundle installto install dependencies. -
Run Jekyll with
bundle exec jekyll serve -
Hack away at
https://localhost:4000