View Demo: https://lorepirri.gitlab.io/jekyll-theme-simple-blog/
Simple Blog is a Jekyll theme for Gitlab or GitHub Pages. It is based on Cayman Blog Theme. You can preview the theme to see what it looks like, or even use it today.
- Blog
- Responsive
- Minimal
- Multi-language
- SEO optimized
- Social buttons (instagram, linkedin, twitter, github, gitlab)
- RSS feed multi-language
Simple Blog Theme is 100% compatible with GitLab and GitHub Pages.
- Fork the repo
- Clone down the repo with one of the two:
- ssh
$ git clone [email protected]:your-username/jekyll-theme-simple-blog.git
- https:
$ git clone https://gitlab.com/lorepirri/jekyll-theme-simple-blog.git
- ssh
- Empty the
_posts/
folder - Install bundler and gems with
$ script/bootstrap
- Run Jekyll with
$ script/server
- Modify
_config.yml
,about-en.md
,contact-en.md
, and the other pages for your project - Write your posts in
_posts/en
and_posts/<other-language>
- Customize the theme
Simple Blog includes simple SEO tags from jekyll-social-metatags. Have a look at the page for its usage.
The usage is compatible with the plugin Jekyll SEO Tag, which provides a battle-tested template of crowdsourced best-practices.
To switch to a better SEO tags however, one should install Jekyll Feed plugin:
-
Add this line to your site's Gemfile:
gem 'jekyll-seo-tag'
-
And then add this line to your site's
_config.yml
:gems: - jekyll-seo-tag
-
Replace with the following, the
<!-- jekyll-seo-tag -->
comment in your site'sdefault.html
:{% seo %}
For more information about configuring this plugin, see the official Jekyll SEO Tag page.
If you'd like to add your own custom styles:
- Create a file called
/assets/css/style.scss
in your site - Add the following content to the top of the file, exactly as shown:
--- --- @import "{{ site.theme }}";
- Add any custom CSS (or Sass, including imports) you'd like immediately after the
@import
line
If you'd like to change the theme's HTML layout:
- Copy the original template from the theme's repository
(Pro-tip: click "raw" to make copying easier) - Create a file called
/_layouts/default.html
in your site - Paste the default layout content copied in the first step
- Customize the layout as you'd like
If you'd like to change the theme's Sass variables, set new values before the @import
line in your stylesheet:
$section-headings-color: #0086b3;
@import "{{ site.theme }}";
See the open issues for a list of proposed features (and known issues).
The Simple Blog Theme is intended to make it quick and easy for Gitlab or GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying.
Interested in contributing to Simple Blog? We'd love your help. Simple Blog is an open source project, built one contribution at a time by users like you. See the CONTRIBUTING file for instructions on how to contribute.
If you'd like to preview the theme locally (for example, in the process of proposing a change):
- Clone down the theme's repository (
git clone https://gitlab.com/lorepirri/jekyll-theme-simple-blog
) cd
into the theme's directory- Run
script/bootstrap
to install the necessary dependencies - Run
script/server
to start the preview server - Visit
localhost:4000
in your browser to preview the theme