Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Build a Jekyll blog in minutes on GitHub Pages without touching the command line.
Jekyll Now is a fork-first Jekyll blog template for GitHub Pages that lets you publish a static blog without ever touching the command line. It eliminates the usual Jekyll setup work — no Ruby, no rvm/rbenv, no gem dependencies — so a complete blog can be up in a few minutes.
Jekyll Now is a Jekyll-based blog template that runs entirely on GitHub Pages, created by Barry Clark and open-sourced on GitHub. As input it takes a GitHub user repository; as output it produces a minimal, responsive static blog at username.github.io. All setup and posting can be done from the GitHub.com browser interface, although optional local development is also documented.
_posts folder with filenames in year-month-day-title.md format, and each post requires a front matter block._config.yml file._config.yml._config.yml, and write posts entirely through GitHub.com's file editor.gem install github-pages and jekyll serve.Fork the repository and rename it to yourgithubusername.github.io. Next, edit the _config.yml file to set your site name, description, avatar, and toggle Google Analytics, Disqus, and social icons. Finally, edit the file at _posts/2014-3-3-Hello-World.md to publish your first post; any change to the repository forces GitHub Pages to rebuild the site with Jekyll.
No. The whole point of Jekyll Now is to eliminate local setup. You create the blog by forking the repository and editing files on GitHub.com; GitHub Pages runs Jekyll for you.
Create a Markdown file in the _posts folder with the filename format year-month-day-title.md, and include front matter at the top. You can add a file by clicking the plus icon in the _posts folder on GitHub.com.
Yes. Install Jekyll and the GitHub Pages plugins with gem install github-pages, clone your fork, run jekyll serve, and view the site at http://127.0.0.1:4000/.
The Smashing Magazine walkthrough linked in the README covers setting up a custom domain along with importing from WordPress and theming with Liquid templates.
Yes. The template is open source and hosted on GitHub. Hosting on GitHub Pages is free for public repositories.