All Projects → migftw → sparrowx

migftw / sparrowx

Licence: MIT license
Minimal, SEO-friendly, Jekyll + Netlify CMS Boilerplate.

Programming Languages

SCSS
7915 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to sparrowx

fresh
Fresh is a free blog template for Jekyll
Stars: ✭ 48 (+220%)
Mutual labels:  jekyll-theme, free
mr-brown
Mr.Brown is a responsive Jekyll theme
Stars: ✭ 21 (+40%)
Mutual labels:  jekyll-theme, free
iDocs
iDocs is one page documentation html template which helps you to create your offline and online documentation for your themes, templates, plugins and software.
Stars: ✭ 75 (+400%)
Mutual labels:  free
Sofia
Cutomize your discord profile.
Stars: ✭ 18 (+20%)
Mutual labels:  free
slim-pickins-jekyll-theme
A minimal Jekyll theme
Stars: ✭ 42 (+180%)
Mutual labels:  jekyll-theme
Rboxlo
Roblox private server
Stars: ✭ 173 (+1053.33%)
Mutual labels:  free
Ephesus
Ephesus is a minimalist Jekyll theme, designed for personal blog use.
Stars: ✭ 40 (+166.67%)
Mutual labels:  jekyll-theme
CMW
CraftMyWebsite votre cms Minecraft de qualité depuis 2014 ! REPO V1
Stars: ✭ 16 (+6.67%)
Mutual labels:  free
jekyll-kieta-theme
Clean knowledge sharing jekyll theme
Stars: ✭ 51 (+240%)
Mutual labels:  jekyll-theme
singlefile
featured cs:go internal hack, one file and less than 1000 lines.
Stars: ✭ 47 (+213.33%)
Mutual labels:  free
DiscordBot-Template
A boilerplate / template for discord.js bots with 100% coverage of Discord API, command handler, error handler based on https://discordjs.guide/
Stars: ✭ 129 (+760%)
Mutual labels:  boilerplate-template
fullpage-jekyll
fullPage.js & Bootstrap 4 template for Jekyll
Stars: ✭ 13 (-13.33%)
Mutual labels:  jekyll-theme
add-to-calendar-button
A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.
Stars: ✭ 697 (+4546.67%)
Mutual labels:  free
coindrop
The easiest way to accept donations & tips anywhere
Stars: ✭ 59 (+293.33%)
Mutual labels:  free
startbootstrap-half-slider
A half page image slider Bootstrap HTML template created by Start Bootstrap
Stars: ✭ 50 (+233.33%)
Mutual labels:  free
blue-pair
Simple Bluetooth Android app for handling device discovery and pairing.
Stars: ✭ 52 (+246.67%)
Mutual labels:  free
A320-family
A high-quality Airbus A320 simulation for the open source simulator, FlightGear
Stars: ✭ 80 (+433.33%)
Mutual labels:  free
savetheworldwithgo
Build systems with Go examples
Stars: ✭ 81 (+440%)
Mutual labels:  free
awesome-vue-boilerplate
😍 Awesome Vue Boilerplate 🥳 Vue 🥰 Vuex, vuex-pathify 🤗 element-ui 🤲 tailwindcss
Stars: ✭ 60 (+300%)
Mutual labels:  boilerplate-template
netlify-cms-widget-youtube
Youtube Widget for Netlify CMS
Stars: ✭ 24 (+60%)
Mutual labels:  netlify-cms

Donate

SparrowX - Jekyll Netlify CMS Boilerplate

A clean minimal Jekyll theme for SEO-focused writers. The theme loads fast and it's Netlify CMS-ready. SparrowX is a remix of sparrow by lingxz.

Live Demo

Screenshot

Website Speed Test

Original Sparrow Features

  • Fully compatible with Github Pages
  • Configurable and responsive multi layer menu, adapted from slimmenu
  • Disqus integration
  • Font Awesome icons included
  • Google analytics
  • Social sharing using rrssb
  • 404 page included
  • Atom feed generated with jekyll-feed
  • Pagination enabled for blog using jekyll-paginate
  • Basic SEO with Facebook Open Graph tags and Twitter cards

SparrowX Features

  • Fully compatible with Netlify CMS (one-click setup).
  • Added new custom variables like updated, headerimage, feature-img, sitemap and tag.
  • The theme renders system font-stack.
  • Compressed JS.
  • Improved load time and reduced file requests.
  • _redirects feature

Install

Just fork this repo and replace the posts with your own. Also rename the sample poetry collection to replace it with your own collection, or just delete it if you don't need to use collections. The example is poetry, but you can easily revamp this into essays, short stories, portfolio, or whatever your creative work is.

Up and running with Netlify CMS

Click here to read the documentation for Netlify CMS.

For customization, see below.

General configuration

Customize these values in the _config.yml file:

title                    : "SparrowX"
description              : "A clean minimal Jekyll theme for SEO-focused writers."
favicon                  : "/assets/images/image.png" # You can use base64 encoded images.
url                      : "https://sparrowx.m1q.net" # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
baseurl                  : "" # the subpath of your site, e.g. "/blog" leave blank if no subpath

# Site Author
author:
  name                   : "Mighil" # appears in the footer and atom feed

Disqus

To activate Disqus, fill in your disqus shortname:

comments                 : true # set it to false to disable comments
disqus:
  shortname              : your_shortname

Google analytics

Enable google analytics by filling in your tracking ID:

analytics:
  google:
    tracking_id          : # add your google tracking id here

Collections

If you are using collections, be sure to replace this with your collection name:

collections:
  poetry:
    output: true
    permalink: /:collection/:title/

Pagination

Currently, pagination is set to a the blog page. Unfortunately Jekyll does not yet support pagination on multiple pages.

If you want to paginate on a different page, simply change the paginate_path value in the config file and create the relevant page.

paginate: 5 # amount of posts to show
paginate_path: "/blog/page:num/"
timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Navigation

You can change the navigation links in _data/navigation.yml.

Front matter defaults

At the bottom of the config file, you can also set front matter defaults so that you don't have to repeat the same front matter for every post. This is an example:

# Front matter defaults
defaults:
  # _pages
  - scope:
      path: ""
      type: pages
    values:
      layout: page
      comments: false
  # _posts
  - scope:
      path: ""
      type: posts
    values:
      layout: post
      comments: true
      share: true
  # _poetry
  - scope:
      path: ""
      type: poetry
    values:
      layout: post
      share: false

How tags work

You should create specific .md files within /tag/ before using the variable.

Other

To enhance SEO, you can add your twitter username to _config.yml.

You can also add an image path for the og_image value in the config file, for a default open graph sharing image. This value can be overridden in individual posts by using headerimage variable.

Your default image Netlify CMS uploads will go to /images/.

For the various config options see the sample config file for the demo site

The color schemes and fonts can also be customized through scss, by editing the relevant variable in _variables.scss.

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].