A minimalist Jekyll theme inspired by Linux man pages. Perfect for personal websites, portfolios, and blogs with a technical focus.
_data/social_links.yml
. You can add as many as you like!{: .news} Text for your news here
Additional news posts can be added in the `news-archive.md` file with the same format.
3. Fun facts can be added in `_data/facts.yml`. The theme will automatically turn this into a linked list for you.
4. If you would like to add/remove sections from the home page, `_data/navigation.yml` has each page and the link.
For the links that go to a header on the homepage you can use the name of the header after the home page route:
*file: index.md*
```markdown
# Section
would be
file: navigation.yml
- name: Section
link: /#section
See this markdown reference for more guidance on how to figure out the links for your headers.
For links that go to other pages on the site you will most likely have to prefix the page name with ../../
.
- name: Writing
link: ../../writing.html
Create posts in _posts
directory following this format:
---
layout: post
title: Your Post Title
description: Brief description
tags: [tag1, tag2]
toc: true # Optional table of contents
---
Your content here...
Make sure to name the file with the YYYY-MM-DD-Title.md
.
The theme comes with several preset color schemes. You can set the base skin in the config.yaml
file and the light and dark mode will automatically adapt to whatever the user has set as their preference.
Theme | Preview |
---|---|
Purple | |
Tomorrow | |
GitHub | |
Dracula | |
Nord | |
Monokai |
Theme | Preview |
---|---|
Purple | |
Tomorrow | |
GitHub | |
Dracula | |
Nord | |
Monokai |
This theme uses Nitti as its default font. You can purchase Nitti from Adobe Fonts. If you have purchased the font, you can put it in the assets/fonts
directory and it should automatically load.
If you want to use a different font, you will have to change lines 8-35 in _sass/jekyll-theme-manpage.scss
to import/load the correct font. You will also need to set the default font in _sass/variables.scss
// Typography
$font-family-mono: "Nitti", "Source Code Pro", "Inconsolata", monospace;
To set up your environment to develop this theme:
bundle install
bundle exec jekyll serve
http://localhost:4000
If you want to try out the different skins, you will have to stop and start the bundler each time.
Enable optional features in your _config.yml
:
features:
comments: true # Set to true to enable Giscus comments
rss_feed: true # Set to true to enable RSS feed
search: true # Set to true to enable search
google_analytics: false # Set to true to enable Google Analytics
tags: true # Set to true to enable tags
read_time: true # Set to true to enable read time
back_to_top: false # Set to true to enable back to top button
To enable comments:
features.comments: true
in your _config.yml
_includes/comments.html
Disable comments for specific posts by adding comments: false
to the post's front matter.
To enable RSS feed:
features.rss_feed: true
in your _config.yml
Your feed will be available at /feed.xml
. See Jekyll Feed documentation for additional configuration options.
Bug reports and pull requests are welcome on GitHub. 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.
The theme is available as open source under the terms of the MIT License.
Created with ❤️ by Drshika Asher