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.
Simple Blog Theme is 100% compatible with GitLab and GitHub Pages.
$ git clone [email protected]:your-username/jekyll-theme-simple-blog.git
$ git clone https://gitlab.com/lorepirri/jekyll-theme-simple-blog.git
_posts/
folder$ script/bootstrap
$ script/server
_config.yml
, about-en.md
, contact-en.md
, and the other pages for your project_posts/en
and _posts/<other-language>
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's default.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:
/assets/css/style.scss
in your site---
---
@import "{{ site.theme }}";
@import
lineIf you'd like to change the theme's HTML layout:
/_layouts/default.html
in your siteIf 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):
git clone https://gitlab.com/lorepirri/jekyll-theme-simple-blog
)cd
into the theme's directoryscript/bootstrap
to install the necessary dependenciesscript/server
to start the preview serverlocalhost:4000
in your browser to preview the theme