jekyll-theme-minimalistic
Minimalistic theme is based on gh-pages minimal theme, with navigation in the sidebar and super amazing features. Wanna see it in action? You can view a live demo at Minimalistic.
Features
- Auto light/dark mode.
- Syntax Highlighting for light/dark mode.
- Logo Support for the page.
- Links in Sidebar.
- List/Sublist in Sidebar.
- Fully responsive with mobile support.
- Logo/Favicon Support.
- Github-Pages Support.
- Card Support
- Under active development.
- And many more. 😁
Usage
You can refer to this Wiki Link if you want to use this theme for creating github pages for your own custom repository.
To use the Minimalistic theme:
- Add the following line to your Gemfile
gem "jekyll-remote-theme"then run bundle install to install the plugin.
- Add the following to your site's _config.ymlto activate the plugin:
plugins:
  - jekyll-remote-themeNote: If you are using a Jekyll version less than 3.5.0, use the gems key instead of plugins.
- Add the following line to your config.ymlto use the theme
remote_theme: vaibhavvikas/jekyll-theme-minimalisticthen running bundle exec jekyll serve for local deployment.
Customizing
Configuration variables
Minimalistic will respect the following variables, if set in your site's _config.yml:
title: [The title of your site]
description: [A short description of your site's purpose]Additionally, you may choose to set the following optional variables:
google_analytics: [Your Google Analytics tracking ID]Choose light, dark, or automatically adjusting theme based on system theme:
color-scheme: auto/light/darkSpecify logo for the website:
logo: /assets/img/<logo_file>Enable favicon by putting a favicon.ico in the repo's root directory and add the following line in config.yml:
favicon: trueCustomizing Sidebar
You can define a list of platforms that are linked from the sidebar in _config.yml:
platforms:
  - name: GitHub
    icon: <i class="fa-brands fa-github"></i>
    link: https://github.com/vaibhavvikas
  - name: LinkedIn
    icon: <i class="fa-brands fa-linkedin"></i>
    link: https://www.linkedin.com/in/vaibhavvikas
  - ...Navigation
You can also define, hyperlinks for specific pages or section of a pages (very helpful if creating multipage documentation or easy navigation between multiple sections).
For adding navigation do the following steps:
- Put your .md files in the root directory. and add the below text on top of pages to get it converted to html by jekyll.
---
layout: default
---- Use the navigation example below to add navigation section in _config.yml file. Treat all your .md files as .html files. Currently it only supports one nesting in sublist.
navigation:
  - name: Readme
    link: ./index.html
    sublist:
      - name: Image
        link: ./index.html#small-image
  - name: Another Page
    link: ./another-page.html
  - ...Example:
Live Example
Code used in GitHub page
Lets say you have a file name xyz.md, you put that into the root dir. Now, add the text in step 1 at the top of the md file. After that for the text in _config.yml you will put it like:
navigation:
  - name: [Write name of your hyperlink]
    link: ./xyz.htmlAdding Card:
Use the code template:
<div class="card">
  <h3>Some Title</h3>
  <p><b>New Delhi</b>, India<br>
  Some Text</p>
  <a href="https://vaibhavvikas.ml/"><span class="card-link-spanner"></span></a>
</div>Stylesheet
If you'd like to add your own custom styles:
- 
Create a file called /assets/css/style.scssin 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 @importline
Note: If you'd like to change the theme's Sass variables, you must set new values before the @import line in your stylesheet.
Customizing Google Analytics code
Google has released several iterations to their Google Analytics code over the years since this theme was first created. If you would like to take advantage of the latest code, paste it into _includes/head-custom-google-analytics.html in your Jekyll site.
Previewing the theme locally
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://github.com/vaibhavvikas/jekyll-theme-minimalistic)
- 
cdinto the theme's directory
- Run script/bootstrapto install the necessary dependencies
- Run bundle exec jekyll serveto start the preview server
- Visit localhost:4000in your browser to preview the theme
Running tests
The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run script/cibuild. You'll need to run script/bootstrap once before the test script will work.
Contributors
All contributions and suggestions are welcome.
Credits:
This theme was built using Minimalist theme by BDHU and Minimal by GithHub.
