Sharad is a fast, beautiful and responsive theme for your jekyll sites.
- Responsive and usable across devices
- Full jekyll markdown support
- Lightweight and fast
- Easy configuration
- Included rakefile
There are two layouts to choose from for posts and one default layout.
Here's the front matter for this post
layout: coverpost
title: "Quick Start Guide"
date: 2020-04-21
author: Ayush Shenoy
tags: jekyll
cover: jpg
For posts with the coverpost
layout, images are stored in /assets/post/yyyy-mm-dd-post-title
in four sizes (s,m,x,xl), used with the following screen widths:
cover@s => 0-425px
cover@m => 425-768px
cover@l => 768-1440px
cover@xl => 1440px-
The filetype is specified in the front matter. If the cover file is not found it will default to the cover value specified in _config.yml
If you want to have images with captions, all you have to do is use standard markdown syntax immediately followed by a the caption in italics
![](image_url)
*caption*
A excerpt from the page is shown in the list of posts under each post's title. This is usually the first paragraph of the post. If you want to specify it manually, add a <!--more-->
tag to mark the end of the page's excerpt.
A rakefile is included for easy creation of posts and serving previews. See rakefile comments for more information.
Commands:
rake post
- Create a new postrake clean
- Delete generated siterake preview
- Start a live preview
git clone https://www.github.com/masala-man/jekyll-theme-sharad
bundle install
jekyll serve
The MIT License (MIT)
Copyright (c) 2020 Ayush Shenoy
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The sample posts have been borrowed from mkchoi212/paper-jekyll-theme