Plain and simple Jekyll site template ideal for GitHub Pages.
Also good for a quick-and-dirty sandbox static site similar to using CodePen.
There are a few ways to use jeksite:
git clone https://github.com/remino/jeksite.git newsite
cd newsite
asdf install # if you use asdf
bundle install
git remote set-url origin <url of your repo> # if you want to push to a new repo
./jeksite # serve site using jekyll
https://github.com/remino/jeksite/generate
This requires Homebrew and works on macOS (and possibly Linux) only.
brew tap remino/remino
brew install jeksite
jeksite new newsite
cd newsite
./jeksite
See ./jeksite -h
for more information on the command.
- Ensure
Gemfile
is usinggithub-pages
if the site is for GitHub Pages. If not, use plainjekyll
. - Update
_config.yml
, notablebaseurl
,domain
,url
,title
, anddescription
. - Update
README.md
by first deleting its content. - Update or remove
LICENSE.txt
if needed. (ISC licence by default.) - Delete content of
index.html
,style.css
, andscript.js
.