beautiful-jekyll
✨ Build a beautiful and simple website in literally minutes. Demo at https://beautifuljekyll.com
Top Related Projects
:triangular_ruler: Jekyll theme for building a personal site, blog, project documentation, or portfolio.
A content-first, sliding sidebar theme for Jekyll.
Build a Jekyll blog in minutes, without touching the command line.
Minima is a one-size-fits-all Jekyll theme for writers.
Cayman is a Jekyll theme for GitHub Pages
Github Pages template for academic personal websites, forked from mmistakes/minimal-mistakes
Quick Overview
Beautiful Jekyll is a ready-to-use template to help you create an awesome website quickly. It's designed for building a personal site, blog, or project page, and offers a clean, responsive design that's easy to customize. The template is built on Jekyll, a static site generator, and can be hosted for free on GitHub Pages.
Pros
- Easy to set up and customize, even for those with limited web development experience
- Responsive design that looks great on various devices and screen sizes
- Built-in features like tags, social media integration, and Google Analytics support
- Free hosting on GitHub Pages, making it cost-effective for personal projects
Cons
- Limited advanced customization options compared to building a site from scratch
- Requires basic knowledge of Git and GitHub for optimal use
- Some features may require additional setup or plugins
- Learning curve for those unfamiliar with Jekyll or static site generators
Getting Started
- Fork the Beautiful Jekyll repository on GitHub.
- Rename the repository to
<yourusername>.github.io
to create your GitHub Pages site. - Customize the
_config.yml
file with your personal information:
title: My Website
author: Your Name
navbar-links:
About Me: "aboutme"
Resources:
- Beautiful Jekyll: "https://beautifuljekyll.com"
- Learn markdown: "https://www.markdowntutorial.com/"
Author's home: "https://deanattali.com"
- Add your content by creating new Markdown files in the
_posts
directory:
---
layout: post
title: My First Blog Post
subtitle: An exciting beginning
tags: [blogging, jekyll]
---
Welcome to my new blog! This is my first post using Beautiful Jekyll...
- Commit and push your changes to GitHub. Your site will be live at
https://<yourusername>.github.io
.
For more detailed instructions and customization options, refer to the Beautiful Jekyll documentation.
Competitor Comparisons
:triangular_ruler: Jekyll theme for building a personal site, blog, project documentation, or portfolio.
Pros of Minimal Mistakes
- More extensive customization options and theme variations
- Better documentation and detailed guides for setup and configuration
- Larger community and more frequent updates
Cons of Minimal Mistakes
- Steeper learning curve for beginners due to more complex structure
- Requires more configuration to achieve a desired look
- May be overkill for simple blog or portfolio sites
Code Comparison
Beautiful Jekyll:
# _config.yml
title: My Website
author: John Doe
navbar-links:
About Me: "aboutme"
Resources:
- Beautiful Jekyll: "https://beautifuljekyll.com"
- Learn markdown: "https://www.markdowntutorial.com/"
Minimal Mistakes:
# _config.yml
title: My Website
name: John Doe
author:
name: "John Doe"
bio: "Just another boring person."
location: "Somewhere, USA"
defaults:
- scope:
path: ""
type: posts
values:
layout: single
author_profile: true
Both themes use YAML configuration, but Minimal Mistakes offers more granular control over site settings and defaults. Beautiful Jekyll's configuration is simpler and more straightforward for basic setups.
A content-first, sliding sidebar theme for Jekyll.
Pros of Lanyon
- Minimalist design with a clean, distraction-free reading experience
- Includes a sliding sidebar for easy navigation
- Lightweight and fast-loading due to its simplicity
Cons of Lanyon
- Limited built-in features compared to Beautiful Jekyll
- Requires more customization for advanced functionality
- Less active development and community support
Code Comparison
Lanyon (layout.html):
<body class="theme-base-{{ site.theme-color }}">
{% include sidebar.html %}
<div class="wrap">
<div class="masthead">
<div class="container">
<h3 class="masthead-title">
Beautiful Jekyll (_layouts/base.html):
<body>
{% include nav.html %}
{{ content }}
{% include footer.html %}
{% include footer-scripts.html %}
</body>
Key Differences
- Lanyon focuses on simplicity and readability, while Beautiful Jekyll offers more features out-of-the-box
- Beautiful Jekyll has a more modern design with built-in responsiveness
- Lanyon uses a sidebar for navigation, while Beautiful Jekyll typically uses a top navigation bar
- Beautiful Jekyll includes more customization options and social media integration by default
- Lanyon may be better suited for developers comfortable with customizing their Jekyll site, while Beautiful Jekyll provides a more complete solution for beginners
Build a Jekyll blog in minutes, without touching the command line.
Pros of jekyll-now
- Simpler setup process, ideal for beginners
- Minimal design, easier to customize from scratch
- Lighter weight, faster loading times
Cons of jekyll-now
- Less feature-rich out of the box
- Limited built-in customization options
- Less active development and community support
Code Comparison
beautiful-jekyll:
# Site settings
title: My Website
description: A virtual proof that I'm awesome
avatar: "/assets/img/avatar-icon.png"
jekyll-now:
name: Your Name
description: Web Developer from Somewhere
avatar: https://raw.githubusercontent.com/barryclark/jekyll-now/master/images/jekyll-logo.png
Both repositories provide Jekyll themes for GitHub Pages, but they cater to different user needs. beautiful-jekyll offers a more polished, feature-rich experience with extensive customization options, making it suitable for users who want a professional-looking site with minimal effort. On the other hand, jekyll-now focuses on simplicity and ease of use, making it an excellent choice for beginners or those who prefer a minimalist approach. The code comparison shows similar configuration options, but beautiful-jekyll generally offers more advanced features and styling options throughout the theme.
Minima is a one-size-fits-all Jekyll theme for writers.
Pros of Minima
- Simpler and more lightweight theme, easier to customize
- Official Jekyll theme, ensuring compatibility and regular updates
- Better integration with GitHub Pages out of the box
Cons of Minima
- Less feature-rich compared to Beautiful Jekyll
- Limited built-in customization options without manual modifications
- Fewer pre-designed layouts and components
Code Comparison
Minima (default layout):
<body>
{%- include header.html -%}
<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>
{%- include footer.html -%}
</body>
Beautiful Jekyll (default layout):
<body>
{% include nav.html %}
{{ content }}
{% include footer.html %}
{% include footer-scripts.html %}
</body>
The code comparison shows that Beautiful Jekyll has a more modular structure with separate includes for navigation and footer scripts, while Minima uses a simpler layout with a wrapper div for the main content. This reflects the overall design philosophy of each theme, with Beautiful Jekyll offering more customization options and Minima focusing on simplicity.
Cayman is a Jekyll theme for GitHub Pages
Pros of Cayman
- Simpler and more lightweight theme, easier to customize
- Official GitHub Pages theme, ensuring better compatibility and support
- Clean, modern design that works well out-of-the-box
Cons of Cayman
- Less feature-rich compared to Beautiful Jekyll
- Limited layout options and customization without extensive modifications
- Fewer built-in components and integrations
Code Comparison
Beautiful Jekyll (config.yml):
title: My Website
author: John Doe
navbar-links:
About Me: "aboutme"
Resources:
- Beautiful Jekyll: "https://beautifuljekyll.com"
- Learn markdown: "https://www.markdowntutorial.com/"
Cayman (_config.yml):
title: My Cayman Site
description: A simple GitHub Pages site using the Cayman theme
show_downloads: true
google_analytics: UA-XXXXXXXX-X
theme: jekyll-theme-cayman
Beautiful Jekyll offers more configuration options out-of-the-box, while Cayman keeps things minimal and requires manual customization for advanced features. Beautiful Jekyll includes built-in support for navigation links and dropdown menus, whereas Cayman focuses on a streamlined single-page layout by default.
Github Pages template for academic personal websites, forked from mmistakes/minimal-mistakes
Pros of academicpages.github.io
- Specifically designed for academic portfolios and CVs
- Includes built-in support for publications, talks, and teaching sections
- Offers easy integration with Google Analytics and citation data
Cons of academicpages.github.io
- Less customizable in terms of layout and design
- May require more setup time for non-academic users
- Limited theme options compared to beautiful-jekyll
Code Comparison
academicpages.github.io:
# Site Settings
locale: "en-US"
title: "Your Name / Site Title"
title_separator: "-"
name: "Your Name"
description: "personal description"
url: "https://academicpages.github.io"
beautiful-jekyll:
# Site settings
title: My website
description: A virtual proof that I'm awesome
navbar-links:
About Me: "aboutme"
Resources:
- Beautiful Jekyll: "https://beautifuljekyll.com"
Both repositories use YAML configuration files, but academicpages.github.io focuses more on academic-specific settings, while beautiful-jekyll offers more general website configuration options.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Beautiful Jekyll
By Dean Attali · Demo
Beautiful Jekyll is a ready-to-use template to help you create a beautiful website quickly. Perfect for personal sites, blogs, or simple project websites. Check out a demo of what you'll get after just two minutes. You can also look at my personal website or my consulting website to see it in use, or see examples of websites other people created using this theme.
If you enjoy Beautiful Jekyll, please consider supporting me. You'll also gain access to office hours and more features! â¤
Table of contents
- Features
- Sponsors ð
- Build your website in 3 steps
- Plans
- Add your own content
- Customizing parameters for each page
- Supported parameters
- Featured users (success stories!)
- Next steps
- Getting help
- Credits and contributions
Features
Check out What's New? to see the latest features!
- SIMPLE: The primary goal of Beautiful Jekyll is to allow literally anyone to create a website in a few minutes.
- Modern: Uses the latest best practices and technologies to achieve nearly perfect scores on Google Chrome's Audit.
- Mobile-first: Designed to look great on both large-screen and small-screen (mobile) devices.
- Highly customizable: Many personalization settings such as changing the background colour/image, adding a logo.
- Flexible usage: Use Beautiful Jekyll directly on GitHub or via a Ruby gem - choose the best development method for you.
- Battle-tested: By using Beautiful Jekyll, you'll be joining 50,000+ users enjoying this theme since 2015.
- SEO and social media support: Customize how your site looks on Google and when shared on social media.
- Comments support: Add comments to any page using either Disqus, Facebook comments, Utterances, Staticman, giscus, or CommentBox.
- Tags: Any blog post can be tagged with keywords, and an index page is automatically generated.
- Analytics: Easily integrate Google Analytics, or other analytics platforms, to track visits to your website.
- Search: Let users easily find any page using a Search button in the navigation bar.
- Photos support: Any page can have a full-width cover photo and thumbnail.
- RSS: An RSS feed is automatically created, so you can even host a podcast easily with Beautiful Jekyll.
Sponsors ð
Developing and maintaining Beautiful Jekyll takes a lot of time and effort - thank you to anyone who helps fund this effort!
Become a sponsor for Beautiful Jekyll and unlock new features!
Build your website in 3 steps
There are a few different ways to build a website using Beautiful Jekyll, and this document will go through the simplest one: using a fork on GitHub. For most people (including myself!), this easy method is the recommended one.
Even if you choose to use one of the advanced installation methods, I still suggest you read through the easy method first.
The easy way (recommended!)
Getting started is literally as easy as 1-2-3 :smile:
Scroll down to see the steps involved, but here is a 30-second video just as a reference as you work through the steps. If you don't already have a GitHub account, you'll need to sign up.
1. Fork this project
Click on the Fork button at the top right corner of this page. Forking means that you're copying this entire project and all its files into your account. Do not click on the Create fork button on the next page yet.
2. Rename the repository to YOURUSERNAME.github.io
You'll see the word "repository" used a lot in GitHub - it simply means "project". Under Repository name you should see the name beautiful-jekyll
, this is where you need to rename your project to YOURUSERNAME.github.io
(replace YOURUSERNAME
with your GitHub user name). It's important to use this exact name so that GitHub will recognize it and automatically create a website for this project.
Tip: If you want to use a different URL for your website, check out the FAQ
3. Customize your website settings
Edit the _config.yml
file to change any settings you want. To edit the file, first click on it to view the file, and on the next page click on the pencil icon to edit it (watch the video tutorial above if you're confused). The settings in the file are self-explanatory and there are comments inside the file to help you understand what each setting does. Any line that begins with a hashtag (#
) is a comment, and the other lines are actual settings. After changing the settings, click the green Commit changes button to save these edits.
Note: In the video above, only one setting in the
_config.yml
file is edited, but you should go through the rest of the settings as well.
4. Congratulations! You have a website!
If you named your project correctly and made an edit to the config file, your website should be ready in a minute or two at https://YOURUSERNAME.github.io
. Every time you make a change to any file, your website will get rebuilt and should be updated in about a minute or so. Your website will be initialized with several sample blog posts and a couple other pages.
The harder way (for advanced users)
The instructions above explain how to use Beautiful Jekyll in the easiest way: by forking on GitHub. There are more advanced installation methods that include either using GitHub Pages with remote themes, or using Ruby gems. They provide you with more control, but are only intended for advanced users.
Note: Beautiful Jekyll was primarily designed to be used as a GitHub theme, so you will not get any support if you use this theme via Ruby gems.
Plans
Beautiful Jekyll is, and always will be, free. But if you want to remove the Beautiful Jekyll ad from your website, use a Dark Mode skin, access office hours, or simply support the development efforts, check out the different plans.
Add your own content
To add pages to your site, you can either write a markdown file (.md
) or you can write an HTML file. It's much easier to write markdown than HTML, so that's the recommended approach (here's a great tutorial if you need to learn markdown in 5 minutes).
To see an example of a markdown file, click on any file that ends in .md
, for example aboutme.md
. On that page you can see some nicely formatted text (there's a word in bold, a link, a few bullet points), and if you click on the pencil icon to edit the file, you'll see the markdown code that generated the pretty text. Very easy!
In contrast, look at tags.html
. That's how your write HTML - not as pretty. So stick with markdown if you don't know HTML.
Any markdown or HTML file that you create will be available on your website under https://<yourusername>.github.io/<pagename>
. For example, if you create a file about.md
(or about.html
) then it'll exist at https://<yourusername>.github.io/about
.
Files you create inside the _posts
directory will be treated as blog entries. You can look at the existing files there to get an idea of how to write blog posts. Note the format of the blog post files - they must follow the naming convention of YEAR-MONTH-DAY-title.md
. After you successfully add your own post, you can delete the existing files inside _posts
to remove the sample posts, as those are just demo posts to help you learn.
Customizing parameters for each page
One last important thing: In order to have your new pages use this template and not just be plain HTML pages, you must add YAML front matter to the top of each page:
---
---
This is where you'll be able to give each page some extra parameters (such as a title, a subtitle, an image, etc - below is a list of all parameters). Add any parameters you want between these two dashed lines, for example:
---
title: Contact me
subtitle: Here you'll find all the ways to get in touch with me
---
If you don't want to use any parameters on a page, you still need to use the two dashed lines. If you don't, then your file will be shown as-is without the Beautiful Jekyll template.
You can look at the top of aboutme.md
as an example.
Important takeaway: ALWAYS add the YAML front matter, which is two lines of three dashes, to EVERY page. If you have any parameters, they go between the two lines.
Supported parameters
Below is a list of the parameters that Beautiful Jekyll supports (any of these can be added to the YAML front matter of any page). Remember to also look in the _config.yml
file to see additional site-wide settings. If there's a parameter that you want to apply to the entire site instead of one specific page, check out this FAQ answer.
Main parameters
These are the basic YAML parameters that you are most likely to use on most pages.
Parameter | Description |
---|---|
title | Page or blog post title |
subtitle | Short description of page or blog post that goes under the title |
tags | List of tags to categorize the post. Separate the tags with commas and place them inside square brackets. Example: [personal, analysis, finance] |
cover-img | Include a large full-width image at the top of the page. You can either provide the path to a single image (eg. "/path/to/img" ) , or a list of images to cycle through (eg. ["/path/img1", "/path/img2"] ). If you want to add a caption to an image, then you must use the list notation (use [] even if you have only one image), and each image should be provided as "/path/to/img" : "Caption of image" . |
thumbnail-img | For blog posts, if you want to add a thumbnail that will show up in the feed, use thumbnail-img: /path/to/image . If no thumbnail is provided, then cover-img will be used as the thumbnail. You can use thumbnail-img: "" to disable a thumbnail. |
comments | If you want do add comments to a specific page, use comments: true . Comments only work if you enable one of the comments providers (Facebook, disqus, staticman, utterances, giscus, CommentBox) in _config.yml file. Comments are automatically enabled on blog posts but not on other pages; to turn comments off for a specific post, use comments: false . |
mathjax | If you want to use LaTeX formulas, you need to enable MathJax. Note that in MathJax you need to use $$ and \\( to start and end expressions |
Parameters for SEO and social media sharing
These parameters let you control what information shows up when a page is shown in a search engine (such as Google) or gets shared on social media (such as Twitter/Facebook).
Parameter | Description |
---|---|
share-title | A title for the page. If not provided, then title will be used, and if that's missing then the site title (from _config.yml ) is used. |
share-description | A brief description of the page. If not provided, then subtitle will be used, and if that's missing then an excerpt from the page content is used. |
share-img | The image to show. If not provided, then cover-img or thumbnail-img will be used if one of them is provided. |
Less commonly used parameters
These are parameters that you may not use often, but can come in handy sometimes.
Parameter | Description |
---|---|
author | Specify the author of a blog post (useful if a website has multiple authors). |
readtime | If you want a post to show how many minutes it will take to read it, use readtime: true . |
show-avatar | If you have an avatar configured in the _config.yml but you want to turn it off on a specific page, use show-avatar: false . |
social-share | By default, every blog post has buttons to share the page on social media. If you want to turn this feature off, use social-share: false . |
nav-short | By default, the navigation bar gets shorter after scrolling down the page. If you want the navigation bar to always be short on a certain page, use nav-short: true |
gh-repo | If you want to show GitHub buttons at the top of a post, this sets the GitHub repo name (eg. daattali/beautiful-jekyll ). You must also use the gh-badge parameter to specify what buttons to show. |
gh-badge | Select which GitHub buttons to display. Available options are: [star, watch, fork, follow]. You must also use the gh-repo parameter to specify the GitHub repo. |
last-updated | If you want to show that a blog post was updated after it was originally released, you can specify an "Updated on" date. |
layout | What type of page this is (default is post for blog posts and page for other pages). See Page types section below for more information. |
Advanced parameters
These are advanced parameters that are only useful for people who need very fine control over their website.
Parameter | Description |
---|---|
footer-extra | If you want to include extra content below the social media icons in the footer, create an HTML file in the _includes/ folder (for example _includes/myinfo.html ) and set footer-extra to the name of the file (for example footer-extra: myinfo.html ). Accepts a single file or a list of files. |
before-content | Similar to footer-extra , but used for including HTML before the main content of the page (below the title). |
after-content | Similar to footer-extra , but used for including HTML after the main content of the page (above the footer). |
head-extra | Similar to footer-extra , but used if you have any HTML code that needs to be included in the <head> tag of the page. |
language | HTML language code to be set on the page's <html> element. |
full-width | By default, page content is constrained to a standard width. Use full-width: true to allow the content to span the entire width of the window. |
js | List of local JavaScript files to include in the page (eg. /assets/js/mypage.js ) |
ext-js | List of external JavaScript files to include in the page (eg. //cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js ). External JavaScript files that support Subresource Integrity (SRI) can be specified using the href and sri parameters eg.href: "//code.jquery.com/jquery-3.1.1.min.js" sri: "sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" |
css | List of local CSS files to include in the page |
ext-css | List of external CSS files to include in the page. External CSS files using SRI (see ext-js parameter) are also supported. |
Page types
- post - To write a blog post, add a markdown or HTML file in the
_posts
folder. As long as you give it YAML front matter (the two lines of three dashes), it will automatically be rendered like a blog post. Look at the existing blog post files to see examples of how to use YAML parameters in blog posts. - page - Any page outside the
_posts
folder that uses YAML front matter will have a very similar style to blog posts. - home - The home layout is meant to act as the homepage of your blog posts - it will display all your blog posts, sorted from newest to oldest. A file using the
home
layout must be namedindex.html
(notindex.md
or anything else!). - minimal - If you want to create a page with minimal styling (ie. without the bulky navigation bar and footer), assign
layout: minimal
to the YAML front matter. - If you want to completely bypass the template engine and just write your own HTML page, simply omit the YAML front matter. Only do this if you know how to write HTML!
Featured users (success stories!)
Visit the Official website to see sample websites using Beautiful Jekyll.
If you'd like to showcase yourself and join this list, upgrading to the Individual plan will give you that publicity plus some other rewards!
Next steps
Congratulations on making it this far! You now have all the tools to easily build a beautiful website for free.
-
After you get comfortable with the basics of writing in markdown, I suggest taking a look at this sample post and the code that created it to learn some more advanced tips about markdown.
-
I highly recommend going over the Frequently Asked Questions to find out answers to questions you may not even know you have. Every few months I suggest checking the What's New? page to see if there are new features, and learn how to update your site to the newest version when it's time.
-
You can also check out the advanced installation methods that give you a little more control but are harder to use. Keep in mind that Beautiful Jekyll was primarily designed to be used as a GitHub theme, so you will not get any support if you choose one of the Ruby installation methods.
-
Remember that Beautiful Jekyll is built on top of Jekyll. This means that reading through the Jekyll documentation will introduce you to many more features that you might find useful!
Getting help
Visit the FAQ page for answers to commonly asked questions.
If you choose to become a sponsor, you'll have access to my office hours where you can ask for help. You can also use the Discussions area to try and get help from the community.
Beautiful Jekyll is used by 50,000+ people with wildly varying degrees of web skills, so it's impossible to answer all the questions that may arise. For any question that's not specifically related to Beautiful Jekyll and is more about Jekyll or web development in general, the answer can often be found on Google, in the Jekyll documentation, or on the Jekyll support forum.
Contributions
Thank you to all past contributors. If you find any problems or would like to contribute in any way, feel free to create a pull request/open an issue/send me a message.
You can also contribute by becoming an official sponsor to help keep Beautiful Jekyll well-maintained!
Credits
This template was not made entirely from scratch. I'd like to give special thanks to Jekyll Now and Bootstrap Clean Blog, from whom I've taken several ideas initially.
I'd also like to thank Dr. Jekyll's Themes, Jekyll Themes, and another Jekyll Themes for featuring Beautiful Jekyll in their Jekyll theme directories.
Top Related Projects
:triangular_ruler: Jekyll theme for building a personal site, blog, project documentation, or portfolio.
A content-first, sliding sidebar theme for Jekyll.
Build a Jekyll blog in minutes, without touching the command line.
Minima is a one-size-fits-all Jekyll theme for writers.
Cayman is a Jekyll theme for GitHub Pages
Github Pages template for academic personal websites, forked from mmistakes/minimal-mistakes
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot