All Projects â†’ mmistakes â†’ jekyll-sample-content

mmistakes / jekyll-sample-content

Licence: MIT license
📎 Sample Jekyll content (posts, pages, collections, and images) to test your theme against.

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to jekyll-sample-content

White Paper
Simple, elegant and clean jekyll theme.
Stars: ✭ 195 (+267.92%)
Mutual labels:  jekyll-themes
duo
👬 A Simple Jekyll Theme.
Stars: ✭ 76 (+43.4%)
Mutual labels:  jekyll-themes
highlights-jekyll-theme
A Jekyll version of the "Highlights" theme by HTML5 UP.
Stars: ✭ 26 (-50.94%)
Mutual labels:  jekyll-themes
Jekyll Mdl
A Jekyll theme based in Google Material Design Lite library.
Stars: ✭ 227 (+328.3%)
Mutual labels:  jekyll-themes
jekyll-theme-mint
A clean and responsive jekyll theme
Stars: ✭ 16 (-69.81%)
Mutual labels:  jekyll-themes
directory
Plugins and Themes discovery for Jekyll, built with Jekyll.
Stars: ✭ 30 (-43.4%)
Mutual labels:  jekyll-themes
No Style Please
A (nearly) no-CSS, fast, minimalist Jekyll theme.
Stars: ✭ 192 (+262.26%)
Mutual labels:  jekyll-themes
ethereal-jekyll-theme
A Jekyll version of the "Ethereal" theme by HTML5 UP.
Stars: ✭ 13 (-75.47%)
Mutual labels:  jekyll-themes
agency-jekyll-theme
Jekyll version of the newest Agency Bootstrap theme, plus new features: Google Analytics, Markdown support, custom pages, and more!
Stars: ✭ 222 (+318.87%)
Mutual labels:  jekyll-themes
jekyll-gitbook
Build Jekyll site with GitBook style!
Stars: ✭ 226 (+326.42%)
Mutual labels:  jekyll-themes
Hagura
A light weight, minimal Jekyll theme.
Stars: ✭ 235 (+343.4%)
Mutual labels:  jekyll-themes
jasper2
Full-featured Jekyll port of Ghost's default theme Casper v2 👻
Stars: ✭ 725 (+1267.92%)
Mutual labels:  jekyll-themes
comical-jekyll-theme
A Configurable Webcomic Theme for Jekyll
Stars: ✭ 39 (-26.42%)
Mutual labels:  jekyll-themes
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (+320.75%)
Mutual labels:  jekyll-themes
catbook
a category-centric theme for Jekyll
Stars: ✭ 48 (-9.43%)
Mutual labels:  jekyll-themes
Bulma Clean Theme
A clean and modern Jekyll theme based on Bulma
Stars: ✭ 194 (+266.04%)
Mutual labels:  jekyll-themes
WhatATheme
A customizable Jekyll Portfolio theme which supports blogging.
Stars: ✭ 162 (+205.66%)
Mutual labels:  jekyll-themes
sakura
🌸 A Jekyll theme with baked in Bootstrap 4, Font Awesome 5, Algolia instant search, and more!
Stars: ✭ 31 (-41.51%)
Mutual labels:  jekyll-themes
monophase
A one-column minimal responsive Jekyll blog theme
Stars: ✭ 34 (-35.85%)
Mutual labels:  jekyll-themes
tufte-pandoc-jekyll
A Jekyll theme for using Tufte CSS with Jekyll + Pandoc
Stars: ✭ 56 (+5.66%)
Mutual labels:  jekyll-themes

Jekyll sample content

I found myself creating dummy content over and over again to test Jekyll themes against. So to save time I put together a collection of posts, pages, and collections that cover all sorts of edge cases one might encounter.

This was predominately built to test my Jekyll themes so there are a few layout specific tests in there. But otherwise it should be a solid starting point to test your project against.

Usage

Simply copy the files into your project and assign layout: as a Front Matter default. Layouts haven't been assigned to make things more flexible as everyone names them differently.

Examples:

defaults:
  
  # all posts
  - scope:
      path: ""
      type: posts
    values:
      layout: single
      author_profile: true
      read_time: true
      comments: true
      share: true
      related: true

  # all _pages
  - scope:
      path: ""
      type: pages
    values:
      layout: single

  # recipes collection
  - scope:
      path: ""
      type: recipes
    values:
      layout: single
  
  # pets collection
  - scope:
      path: ""
      type: pets
    values:
      layout: single

  # portfolio collection
  - scope:
      path: ""
      type: portfolio
    values:
      layout: single

Sample Content

Name Description Layout Dependent
authors authors.yml data file for testing multi-author sites Yes
drafts sample draft posts No
includes various helpers for generating galleries, feature blocks, table of contents, etc. Yes
pages sample pages, 404 error page, and various Liquid-based archives No
collections collection documents for _pets, _recipes, _portfolio No
posts sample posts with a range of content and edge-cases Yes
images image assets found in sample posts and collections No

Some archives make use of the group-by-array include helper.


License

MIT License

Copyright (c) 2016 Michael Rose

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.

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].