jekyll-theme-tufte is a Jekyll static website theme inspired by the text design of Edward Tufte. It is enabled by tufte-css, a CSS file providing the Tufte styles.
This is a gem-packaged theme that can be easily installed by including
jekyll-theme-tufte in your Gemfile
.
Large portions of the theme are derived from prior work to bring tufte-css to Jekyll, including:
This theme is minimalist and tries to stick closely to the original tufte-css styles. As a gem-based theme, it is also easier to install and manage compared to classic style themes. (Classic Jekyll themes are installed by mixing all the files in with your site’s files, which creates a big mess.)
This theme is responsive and adapts to desktop and mobile screens. (Margin notes
are displayed inline on narrow screens.) It also supports dark mode detection
via prefers-color-scheme
, looking good on dark and light backgrounds alike.
Add this line to your Jekyll site's Gemfile
:
gem 'jekyll-theme-tufte'
And add these lines to your Jekyll site's _config.yml
:
theme: jekyll-theme-tufte
plugins:
- jekyll-theme-tufte
(Adding the theme to the plugins list is necessary if you want to use the
custom Liquid template tags like {% marginnote ... %}
. If you already have a
plugins list, append - jekyll-theme-tufte
to the list.)
Then, to install all the gem dependencies, run:
$ bundle
Or install it manually with:
$ gem install jekyll-theme-tufte
If you are new to Jekyll, check out the Jekyll documentation first.
The large site title (and subtitle) can be switched on/off by setting the value for header
in _config.yml
to false.
The nav menu page order and titles can be configured in the YAML front matter at the top of each page. See Available Page Layouts in the demo site for more info.
Bug reports and pull requests are welcome on GitHub at https://github.com/ab/jekyll-theme-tufte. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
To set up your environment to develop this theme, clone the theme and run bundle install
.
Themes work much like normal Jekyll sites, so to test changes to the theme, run bundle exec jekyll serve -w
and open your browser at http://localhost:4000/jekyll-theme-tufte/
. This starts a Jekyll server running the theme demo site.
Only files listed in the regex in the gemspec are included in the published theme. Custom directories can be added by editing the regex in jekyll-theme-tufte.gemspec
.
The theme is available as open source under the terms of the MIT License.