mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2025-08-06 05:14:27 -04:00
introducing: minimal mistakes
This commit is contained in:
parent
0c0e191d72
commit
3db2701e10
766 changed files with 41906 additions and 1080 deletions
10
test/Gemfile
Normal file
10
test/Gemfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
# use local theme gem for testing
|
||||
gem "minimal-mistakes-jekyll", path: "../"
|
||||
|
||||
group :jekyll_plugins do
|
||||
gem 'jekyll-algolia', '~> 1.0'
|
||||
end
|
||||
|
||||
gem "wdm", "~> 0.1.0" if Gem.win_platform?
|
312
test/_config.yml
Normal file
312
test/_config.yml
Normal file
|
@ -0,0 +1,312 @@
|
|||
# Welcome to Jekyll!
|
||||
#
|
||||
# This config file is meant for settings that affect your entire site, values
|
||||
# which you are expected to set up once and rarely need to edit after that.
|
||||
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
||||
# `jekyll serve`. If you change this file, please restart the server process.
|
||||
|
||||
theme : "minimal-mistakes-jekyll"
|
||||
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
||||
|
||||
# Site Settings
|
||||
locale : "en-US"
|
||||
title : "Minimal Mistakes Development Test Site"
|
||||
title_separator : "-"
|
||||
name : "Your Name"
|
||||
description : "Minimal Mistakes theme test."
|
||||
url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
|
||||
baseurl : "/test"
|
||||
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
|
||||
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
|
||||
logo : "/assets/images/apple-touch-icon.png" # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
|
||||
masthead_title : "Custom Title" # overrides the website title displayed in the masthead, use " " for no title
|
||||
# breadcrumbs : false # true, false (default)
|
||||
words_per_minute : 200
|
||||
comments:
|
||||
provider : # false (default), "disqus", "discourse", "facebook", "staticman", "utterances", "custom"
|
||||
disqus:
|
||||
shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
|
||||
discourse:
|
||||
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
|
||||
facebook:
|
||||
# https://developers.facebook.com/docs/plugins/comments
|
||||
appid :
|
||||
num_posts : # 5 (default)
|
||||
colorscheme : # "light" (default), "dark"
|
||||
utterances:
|
||||
theme : # "github-light" (default), "github-dark"
|
||||
issue_term : # "pathname" (default)
|
||||
staticman:
|
||||
allowedFields : ['name', 'email', 'url', 'message']
|
||||
branch : # "master", "gh-pages"
|
||||
commitMessage : "New comment by {fields.name}"
|
||||
filename : comment-{@timestamp}
|
||||
format : "yml"
|
||||
moderation : true
|
||||
path : "_data/comments/{options.slug}"
|
||||
requiredFields : ['name', 'email', 'message']
|
||||
transforms:
|
||||
email : "md5"
|
||||
generatedFields:
|
||||
date:
|
||||
type : "date"
|
||||
options:
|
||||
format : "iso8601" # "iso8601" (default), "timestamp-seconds", "timestamp-milliseconds"
|
||||
endpoint : # URL of your own deployment with trailing slash, will fallback to the public instance
|
||||
atom_feed:
|
||||
path : # blank (default) uses feed.xml
|
||||
search : true # true, false (default)
|
||||
search_full_content : true # true, false (default)
|
||||
search_provider : "algolia"
|
||||
algolia:
|
||||
application_id : "QB6HVGBSBA"
|
||||
index_name : "dev_minimal-mistakes"
|
||||
search_only_api_key : "9d5014e5bbc77372547bce778dfa5663"
|
||||
powered_by : true
|
||||
|
||||
# SEO Related
|
||||
google_site_verification :
|
||||
bing_site_verification :
|
||||
yandex_site_verification :
|
||||
|
||||
# Social Sharing
|
||||
twitter:
|
||||
username : "mmistakes"
|
||||
facebook:
|
||||
username :
|
||||
app_id :
|
||||
publisher :
|
||||
og_image : "/assets/images/bio-photo.jpg"
|
||||
# For specifying social profiles
|
||||
# - https://developers.google.com/structured-data/customize/social-profiles
|
||||
social:
|
||||
type : # Person or Organization (defaults to Person)
|
||||
name : # If the user or organization name differs from the site's name
|
||||
links: # An array of links to social media profiles
|
||||
|
||||
# Analytics
|
||||
analytics:
|
||||
provider : false # false (default), "google", "google-universal", "custom"
|
||||
google:
|
||||
tracking_id :
|
||||
|
||||
|
||||
# Site Author
|
||||
author:
|
||||
name : "Your Name"
|
||||
avatar : "/assets/images/bio-photo.jpg"
|
||||
bio : "I am an amazing person."
|
||||
location : "Somewhere"
|
||||
links:
|
||||
- label: "Your Website"
|
||||
icon: "fas fa-fw fa-link"
|
||||
url: "https://your-site.com"
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/"
|
||||
- label: "GitHub"
|
||||
icon: "fab fa-fw fa-github"
|
||||
url: "https://github.com/"
|
||||
- label: "Instagram"
|
||||
icon: "fab fa-fw fa-instagram"
|
||||
url: "https://instagram.com/"
|
||||
|
||||
|
||||
# Site Footer
|
||||
footer:
|
||||
links:
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/"
|
||||
- label: "GitHub"
|
||||
icon: "fab fa-fw fa-github"
|
||||
url: "https://github.com/"
|
||||
- label: "Instagram"
|
||||
icon: "fab fa-fw fa-instagram"
|
||||
url: "https://instagram.com/"
|
||||
|
||||
|
||||
# Reading Files
|
||||
include:
|
||||
- .htaccess
|
||||
- _pages
|
||||
exclude:
|
||||
- "*.sublime-project"
|
||||
- "*.sublime-workspace"
|
||||
- vendor
|
||||
- .asset-cache
|
||||
- .bundle
|
||||
- .jekyll-assets-cache
|
||||
- .sass-cache
|
||||
- assets/js/plugins
|
||||
- assets/js/_main.js
|
||||
- assets/js/vendor
|
||||
- Capfile
|
||||
- CHANGELOG
|
||||
- config
|
||||
- Gemfile
|
||||
- Gruntfile.js
|
||||
- gulpfile.js
|
||||
- LICENSE
|
||||
- log
|
||||
- node_modules
|
||||
- package.json
|
||||
- Rakefile
|
||||
- README
|
||||
- tmp
|
||||
keep_files:
|
||||
- .git
|
||||
- .svn
|
||||
encoding: "utf-8"
|
||||
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
|
||||
|
||||
# Liquid
|
||||
strict_front_matter: true
|
||||
liquid:
|
||||
error_mode: strict
|
||||
|
||||
# Conversion
|
||||
markdown: kramdown
|
||||
highlighter: rouge
|
||||
lsi: false
|
||||
excerpt_separator: "\n\n"
|
||||
incremental: false
|
||||
|
||||
|
||||
# Markdown Processing
|
||||
kramdown:
|
||||
input: GFM
|
||||
hard_wrap: false
|
||||
auto_ids: true
|
||||
footnote_nr: 1
|
||||
entity_output: as_char
|
||||
toc_levels: 1..6
|
||||
smart_quotes: lsquo,rsquo,ldquo,rdquo
|
||||
enable_coderay: false
|
||||
|
||||
|
||||
# Sass/SCSS
|
||||
sass:
|
||||
sass_dir: _sass
|
||||
style: compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
|
||||
|
||||
|
||||
# Outputting
|
||||
permalink: /:categories/:title/
|
||||
paginate: 5 # amount of posts to show
|
||||
paginate_path: /page:num/
|
||||
timezone: # http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
|
||||
|
||||
# Plugins (previously gems:)
|
||||
plugins:
|
||||
- jekyll-paginate
|
||||
- jekyll-sitemap
|
||||
- jekyll-gist
|
||||
- jekyll-feed
|
||||
- jemoji
|
||||
- jekyll-include-cache
|
||||
|
||||
# mimic GitHub Pages with --safe
|
||||
whitelist:
|
||||
- jekyll-paginate
|
||||
- jekyll-sitemap
|
||||
- jekyll-gist
|
||||
- jekyll-feed
|
||||
- jemoji
|
||||
- jekyll-include-cache
|
||||
|
||||
|
||||
# Archives
|
||||
# Type
|
||||
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
|
||||
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
|
||||
# Path (examples)
|
||||
# - Archive page should exist at path when using Liquid method or you can
|
||||
# expect broken links (especially with breadcrumbs enabled)
|
||||
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
|
||||
# - <base_path/categories/my-awesome-category/index.html ~> path: /categories/
|
||||
# - <base_path/my-awesome-category/index.html ~> path: /
|
||||
category_archive:
|
||||
type: liquid
|
||||
path: /categories/
|
||||
tag_archive:
|
||||
type: liquid
|
||||
path: /tags/
|
||||
# https://github.com/jekyll/jekyll-archives
|
||||
# jekyll-archives:
|
||||
# enabled:
|
||||
# - categories
|
||||
# - tags
|
||||
# layouts:
|
||||
# category: archive-taxonomy
|
||||
# tag: archive-taxonomy
|
||||
# permalinks:
|
||||
# category: /categories/:name/
|
||||
# tag: /tags/:name/
|
||||
|
||||
|
||||
# HTML Compression
|
||||
# - http://jch.penibelst.de/
|
||||
compress_html:
|
||||
clippings: all
|
||||
ignore:
|
||||
envs: development
|
||||
|
||||
|
||||
# Collections
|
||||
collections:
|
||||
recipes:
|
||||
output: true
|
||||
permalink: /:collection/:path/
|
||||
pets:
|
||||
output: true
|
||||
permalink: /:collection/:path/
|
||||
portfolio:
|
||||
output: true
|
||||
permalink: /:collection/:path/
|
||||
|
||||
|
||||
# Defaults
|
||||
defaults:
|
||||
# _posts
|
||||
- scope:
|
||||
path: ""
|
||||
type: posts
|
||||
values:
|
||||
layout: single
|
||||
author_profile: true
|
||||
read_time: true
|
||||
share: true
|
||||
related: true
|
||||
# _pages
|
||||
- scope:
|
||||
path: "_pages"
|
||||
type: pages
|
||||
values:
|
||||
layout: single
|
||||
author_profile: true
|
||||
# _recipes
|
||||
- scope:
|
||||
path: ""
|
||||
type: recipes
|
||||
values:
|
||||
layout: single
|
||||
author_profile: true
|
||||
share: true
|
||||
# _pets
|
||||
- scope:
|
||||
path: ""
|
||||
type: pets
|
||||
values:
|
||||
layout: single
|
||||
author_profile: true
|
||||
share: true
|
||||
# _portfolio
|
||||
- scope:
|
||||
path: ""
|
||||
type: portfolio
|
||||
values:
|
||||
layout: single
|
||||
author_profile: false
|
||||
share: true
|
28
test/_data/authors.yml
Normal file
28
test/_data/authors.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Authors
|
||||
|
||||
Billy Rick:
|
||||
name : "Billy Rick"
|
||||
bio : "What do you want, jewels? I am a very extravagant man."
|
||||
avatar : "/assets/images/bio-photo-2.jpg"
|
||||
links:
|
||||
- label: "Email"
|
||||
icon: "fas fa-fw fa-envelope-square"
|
||||
url: "mailto:billyrick@rick.com"
|
||||
- label: "Website"
|
||||
icon: "fas fa-fw fa-link"
|
||||
url: "https://thewhip.com"
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/extravagantman"
|
||||
|
||||
Cornelius Fiddlebone:
|
||||
name : "Cornelius Fiddlebone"
|
||||
bio : "I ordered what?"
|
||||
avatar : "/assets/images/bio-photo.jpg"
|
||||
links:
|
||||
- label: "Email"
|
||||
icon: "fas fa-fw fa-envelope-square"
|
||||
url: "mailto:cornelius@thewhip.com"
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/rhymeswithsackit"
|
61
test/_data/navigation.yml
Normal file
61
test/_data/navigation.yml
Normal file
|
@ -0,0 +1,61 @@
|
|||
# main links links
|
||||
main:
|
||||
- title: "About"
|
||||
url: https://mmistakes.github.io/minimal-mistakes/about/
|
||||
- title: "Posts"
|
||||
url: /year-archive/
|
||||
- title: "Collections"
|
||||
url: /collection-archive/
|
||||
- title: "Sitemap"
|
||||
url: /sitemap/
|
||||
- title: "Extra Menu Item 1"
|
||||
url: /
|
||||
- title: "Extra Menu Item 2"
|
||||
url: /
|
||||
- title: "Extra Menu Item Long Title"
|
||||
url: /
|
||||
|
||||
# sidebar navigation list sample
|
||||
sidebar-sample:
|
||||
- title: "Parent Page A"
|
||||
children:
|
||||
- title: "Child Page A1"
|
||||
url: /child-page-a1/
|
||||
- title: "Child Page A2"
|
||||
url: /child-page-a2/
|
||||
- title: "Child Page A3"
|
||||
url: /child-page-a3/
|
||||
- title: "Child Page A4"
|
||||
url: /child-page-a4/
|
||||
- title: "Parent Page B"
|
||||
children:
|
||||
- title: "Child Page B1"
|
||||
url: /child-page-b1/
|
||||
- title: "Child Page B2"
|
||||
url: /child-page-b2/
|
||||
- title: "Child Page B3"
|
||||
url: /child-page-b3/
|
||||
- title: "Child Page B4"
|
||||
url: /child-page-b4/
|
||||
- title: "Child Page B5"
|
||||
url: /child-page-b5/
|
||||
- title: "Parent Page C"
|
||||
children:
|
||||
- title: "Child Page C1"
|
||||
url: /child-page-c1/
|
||||
- title: "Child Page C2"
|
||||
url: /child-page-c2/
|
||||
- title: "Child Page C3"
|
||||
url: /child-page-c3/
|
||||
- title: "Child Page C4"
|
||||
url: /child-page-c4/
|
||||
- title: "Child Page C5"
|
||||
url: /child-page-c5/
|
||||
- title: "Parent Page D"
|
||||
children:
|
||||
- title: "Child Page D1"
|
||||
url: /child-page-d1/
|
||||
- title: "Child Page D2"
|
||||
url: /child-page-d2/
|
||||
- title: "Child Page D3 (External)"
|
||||
url: https://your-domain.com
|
16
test/_pages/404.md
Normal file
16
test/_pages/404.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
title: "Page Not Found"
|
||||
excerpt: "Page not found. Your pixels are in another canvas."
|
||||
sitemap: false
|
||||
permalink: /404.html
|
||||
---
|
||||
|
||||
Sorry, but the page you were trying to view does not exist --- perhaps you can try searching for it below.
|
||||
|
||||
<script type="text/javascript">
|
||||
var GOOG_FIXURL_LANG = 'en';
|
||||
var GOOG_FIXURL_SITE = '{{ site.url }}'
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js">
|
||||
</script>
|
214
test/_pages/archive-layout-with-content.md
Normal file
214
test/_pages/archive-layout-with-content.md
Normal file
|
@ -0,0 +1,214 @@
|
|||
---
|
||||
title: "Archive Layout with Content"
|
||||
layout: archive
|
||||
permalink: /archive-layout-with-content/
|
||||
---
|
||||
|
||||
A variety of common markup showing how the theme styles them.
|
||||
|
||||
# Header one
|
||||
|
||||
## Header two
|
||||
|
||||
### Header three
|
||||
|
||||
#### Header four
|
||||
|
||||
##### Header five
|
||||
|
||||
###### Header six
|
||||
|
||||
## Blockquotes
|
||||
|
||||
Single line blockquote:
|
||||
|
||||
> Stay hungry. Stay foolish.
|
||||
|
||||
Multi line blockquote with a cite reference:
|
||||
|
||||
> People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things.
|
||||
|
||||
<cite>Steve Jobs</cite> --- Apple Worldwide Developers' Conference, 1997
|
||||
{: .small}
|
||||
|
||||
## Tables
|
||||
|
||||
| Employee | Salary | |
|
||||
| -------- | ------ | ------------------------------------------------------------ |
|
||||
| [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. |
|
||||
| [Jane Doe](#) | $100K | For all the blogging she does. |
|
||||
| [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. |
|
||||
| [Jane Bloggs](#) | $100B | With hair like that?! Enough said. |
|
||||
|
||||
| Header1 | Header2 | Header3 |
|
||||
|:--------|:-------:|--------:|
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|-----------------------------|
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|=============================|
|
||||
| Foot1 | Foot2 | Foot3 |
|
||||
|
||||
## Definition Lists
|
||||
|
||||
Definition List Title
|
||||
: Definition list division.
|
||||
|
||||
Startup
|
||||
: A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
|
||||
|
||||
#dowork
|
||||
: Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
|
||||
|
||||
Do It Live
|
||||
: I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one.
|
||||
|
||||
## Unordered Lists (Nested)
|
||||
|
||||
* List item one
|
||||
* List item one
|
||||
* List item one
|
||||
* List item two
|
||||
* List item three
|
||||
* List item four
|
||||
* List item two
|
||||
* List item three
|
||||
* List item four
|
||||
* List item two
|
||||
* List item three
|
||||
* List item four
|
||||
|
||||
## Ordered List (Nested)
|
||||
|
||||
1. List item one
|
||||
1. List item one
|
||||
1. List item one
|
||||
2. List item two
|
||||
3. List item three
|
||||
4. List item four
|
||||
2. List item two
|
||||
3. List item three
|
||||
4. List item four
|
||||
2. List item two
|
||||
3. List item three
|
||||
4. List item four
|
||||
|
||||
## Buttons
|
||||
|
||||
Make any link standout more when applying the `.btn` class.
|
||||
|
||||
```html
|
||||
<a href="#" class="btn--success">Success Button</a>
|
||||
```
|
||||
|
||||
[Primary Button](#){: .btn}
|
||||
[Success Button](#){: .btn .btn--success}
|
||||
[Warning Button](#){: .btn .btn--warning}
|
||||
[Danger Button](#){: .btn .btn--danger}
|
||||
[Info Button](#){: .btn .btn--info}
|
||||
[Inverse Button](#){: .btn .btn--inverse}
|
||||
[Light Outline Button](#){: .btn .btn--light-outline}
|
||||
|
||||
```markdown
|
||||
[Primary Button Text](#link){: .btn}
|
||||
[Success Button Text](#link){: .btn .btn--success}
|
||||
[Warning Button Text](#link){: .btn .btn--warning}
|
||||
[Danger Button Text](#link){: .btn .btn--danger}
|
||||
[Info Button Text](#link){: .btn .btn--info}
|
||||
[Inverse Button](#link){: .btn .btn--inverse}
|
||||
[Light Outline Button](#link){: .btn .btn--light-outline}
|
||||
```
|
||||
|
||||
[X-Large Button](#){: .btn .btn--x-large}
|
||||
[Large Button](#){: .btn .btn--large}
|
||||
[Default Button](#){: .btn}
|
||||
[Small Button](#){: .btn .btn--small}
|
||||
|
||||
```markdown
|
||||
[X-Large Button](#link){: .btn .btn--x-large}
|
||||
[Large Button](#link){: .btn .btn--large}
|
||||
[Default Button](#link){: .btn}
|
||||
[Small Button](#link){: .btn .btn--small}
|
||||
```
|
||||
|
||||
## Notices
|
||||
|
||||
**Watch out!** You can also add notices by appending `{: .notice}` to a paragraph.
|
||||
{: .notice}
|
||||
|
||||
## HTML Tags
|
||||
|
||||
### Address Tag
|
||||
|
||||
<address>
|
||||
1 Infinite Loop<br /> Cupertino, CA 95014<br /> United States
|
||||
</address>
|
||||
|
||||
### Anchor Tag (aka. Link)
|
||||
|
||||
This is an example of a [link](http://apple.com "Apple").
|
||||
|
||||
### Abbreviation Tag
|
||||
|
||||
The abbreviation CSS stands for "Cascading Style Sheets".
|
||||
|
||||
*[CSS]: Cascading Style Sheets
|
||||
|
||||
### Cite Tag
|
||||
|
||||
"Code is poetry." ---<cite>Automattic</cite>
|
||||
|
||||
### Code Tag
|
||||
|
||||
You will learn later on in these tests that `word-wrap: break-word;` will be your best friend.
|
||||
|
||||
### Strike Tag
|
||||
|
||||
This tag will let you <strike>strikeout text</strike>.
|
||||
|
||||
### Emphasize Tag
|
||||
|
||||
The emphasize tag should _italicize_ text.
|
||||
|
||||
### Insert Tag
|
||||
|
||||
This tag should denote <ins>inserted</ins> text.
|
||||
|
||||
### Keyboard Tag
|
||||
|
||||
This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the `<code>` tag.
|
||||
|
||||
### Preformatted Tag
|
||||
|
||||
This tag styles large blocks of code.
|
||||
|
||||
<pre>
|
||||
.post-title {
|
||||
margin: 0 0 5px;
|
||||
font-weight: bold;
|
||||
font-size: 38px;
|
||||
line-height: 1.2;
|
||||
and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
|
||||
}
|
||||
</pre>
|
||||
|
||||
### Quote Tag
|
||||
|
||||
<q>Developers, developers, developers…</q> –Steve Ballmer
|
||||
|
||||
### Strong Tag
|
||||
|
||||
This tag shows **bold text**.
|
||||
|
||||
### Subscript Tag
|
||||
|
||||
Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
|
||||
|
||||
### Superscript Tag
|
||||
|
||||
Still sticking with science and Albert Einstein's E = MC<sup>2</sup>, which should lift the 2 up.
|
||||
|
||||
### Variable Tag
|
||||
|
||||
This allows you to denote <var>variables</var>.
|
6
test/_pages/category-archive.md
Normal file
6
test/_pages/category-archive.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Posts by Category"
|
||||
layout: categories
|
||||
permalink: /categories-archive/
|
||||
author_profile: true
|
||||
---
|
23
test/_pages/collection-archive.html
Normal file
23
test/_pages/collection-archive.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
layout: archive
|
||||
title: "Posts by Collection"
|
||||
permalink: /collection-archive/
|
||||
author_profile: true
|
||||
---
|
||||
|
||||
{% capture written_label %}'None'{% endcapture %}
|
||||
|
||||
{% for collection in site.collections %}
|
||||
{% unless collection.output == false or collection.label == "posts" %}
|
||||
{% capture label %}{{ collection.label }}{% endcapture %}
|
||||
{% if label != written_label %}
|
||||
<h2 id="{{ label | slugify }}" class="archive__subtitle">{{ label }}</h2>
|
||||
{% capture written_label %}{{ label }}{% endcapture %}
|
||||
{% endif %}
|
||||
{% endunless %}
|
||||
{% for post in collection.docs %}
|
||||
{% unless collection.output == false or collection.label == "posts" %}
|
||||
{% include archive-single.html %}
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
8
test/_pages/edge-case.md
Normal file
8
test/_pages/edge-case.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: Edge Case
|
||||
layout: category
|
||||
permalink: /categories/edge-case/
|
||||
taxonomy: Edge Case
|
||||
---
|
||||
|
||||
Sample post listing for the category `Edge Case`.
|
52
test/_pages/lorem-ipsum.md
Normal file
52
test/_pages/lorem-ipsum.md
Normal file
|
@ -0,0 +1,52 @@
|
|||
---
|
||||
title: "Lorem Ipsum"
|
||||
permalink: /lorem-ipsum/
|
||||
---
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.
|
||||
|
||||
Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.
|
||||
|
||||
Praesent interdum mollis neque. In egestas nulla eget pede. Integer eu purus sed diam dictum scelerisque. Morbi cursus velit et felis. Maecenas faucibus aliquet erat. In aliquet rhoncus tellus. Integer auctor nibh a nunc fringilla tempus. Cras turpis urna, dignissim vel, suscipit pulvinar, rutrum quis, sem. Ut lobortis convallis dui. Sed nonummy orci a justo. Morbi nec diam eget eros eleifend tincidunt.
|
||||
|
||||
Curabitur non elit. Pellentesque iaculis, nisl non aliquet adipiscing, purus urna aliquet orci, sed sodales pede neque at massa. Pellentesque laoreet, enim eget varius mollis, sapien erat suscipit metus, sit amet iaculis nulla sapien id felis. Aliquam erat volutpat. Nam congue nulla a ligula. Morbi tempor hendrerit erat. Curabitur augue. Vestibulum nulla est, commodo et, fringilla quis, bibendum eget, ipsum. Suspendisse pulvinar iaculis ante. Mauris dignissim ante quis nisi. Aliquam ante mi, aliquam et, pellentesque ac, dapibus et, enim. In vulputate justo vel magna. Phasellus imperdiet justo. Proin odio orci, dapibus id, porta a, pellentesque id, erat. Aliquam erat volutpat. Mauris nonummy varius libero. Sed dolor ipsum, tempor non, aliquet et, pulvinar quis, dui. Pellentesque mauris diam, lobortis id, varius varius, facilisis at, nulla.
|
||||
|
||||
Cras pede. Nullam id velit sit amet turpis tincidunt sagittis. Nunc malesuada. Nunc consequat scelerisque odio. Donec eu leo. Nunc pellentesque felis sed odio. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vivamus lobortis metus in lectus. Cras mollis quam eget sapien. Pellentesque non lorem sit amet sem lacinia euismod.
|
||||
|
||||
Nulla eget diam eget leo imperdiet consequat. Morbi nunc magna, pellentesque eu, porta at, ultricies ut, neque. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In tincidunt. Praesent ut orci id eros congue ultrices. Mauris non neque. Donec nulla ante, molestie sit amet, fermentum nec, blandit sit amet, purus. Fusce eget diam eu odio iaculis mollis. Phasellus consectetuer pede quis nisi. Proin non sem ut elit pulvinar faucibus. In a turpis nec augue fringilla elementum.
|
||||
|
||||
Nullam felis. Donec in nulla. Suspendisse sodales, turpis in suscipit ullamcorper, enim nunc sagittis risus, eu auctor velit tortor ut turpis. Mauris id augue at neque aliquam eleifend. Sed eget augue. Nunc faucibus ligula sed massa. Etiam non nulla. Etiam accumsan ullamcorper nisl. In pharetra massa at nunc. Nunc elementum. Duis sodales enim nec libero. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Praesent dapibus eros sodales urna. Duis magna nisi, lobortis quis, tincidunt rutrum, posuere non, ipsum.
|
||||
|
||||
Aliquam convallis neque vitae diam. In diam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis fermentum arcu in tortor. Sed nibh leo, rhoncus eu, fermentum et, scelerisque ac, massa. Cras id turpis. Etiam commodo sem luctus lorem. Morbi at mi. In rutrum. Aenean luctus pede euismod tortor. Phasellus dictum. Cras neque justo, venenatis sit amet, tristique et, vulputate in, dui. Etiam sed mi gravida sapien imperdiet dictum. Aliquam gravida orci a tortor. Donec tempor. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus risus ante, pellentesque vitae, luctus eget, scelerisque sed, libero. Donec massa.
|
||||
|
||||
Donec libero mauris, volutpat at, convallis vel, laoreet euismod, augue. In accumsan malesuada risus. Mauris metus magna, condimentum in, nonummy non, ornare eu, velit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin posuere. Proin rhoncus rutrum lorem. Phasellus dignissim massa non libero volutpat tincidunt. In hac habitasse platea dictumst. Phasellus eget eros. Nulla in nulla. Vivamus quis mauris. Maecenas pharetra rhoncus tellus. Sed sit amet lacus.
|
||||
|
||||
Quisque interdum felis a tellus. Aliquam sed diam ac velit aliquam rutrum. Morbi commodo, risus a pulvinar adipiscing, tortor pede posuere risus, ac ornare tellus massa nec lectus. Vivamus mollis metus ac sapien. Nam sed est a libero ullamcorper dapibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean a erat ac nibh accumsan volutpat. Phasellus pulvinar consequat turpis. Curabitur ante metus, tempus ut, consequat eu, sollicitudin sit amet, justo. Duis ut libero.
|
||||
|
||||
Հայերեն
|
||||
|
||||
Lorem Ipsum-ը տպագրության և տպագրական արդյունաբերության համար նախատեսված մոդելային տեքստ է: Սկսած 1500-ականներից\` Lorem Ipsum-ը հանդիսացել է տպագրական արդյունաբերության ստանդարտ մոդելային տեքստ, ինչը մի անհայտ տպագրիչի կողմից տարբեր տառատեսակների օրինակների գիրք ստեղծելու ջանքերի արդյունք է: Այս տեքստը ոչ միայն կարողացել է գոյատևել հինգ դարաշրջան, այլև ներառվել է էլեկտրոնային տպագրության մեջ\` մնալով էապես անփոփոխ: Այն հայտնի է դարձել 1960-ականներին Lorem Ipsum բովանդակող Letraset էջերի թողարկման արդյունքում, իսկ ավելի ուշ համակարգչային տպագրության այնպիսի ծրագրերի թողարկման հետևանքով, ինչպիսին է Aldus PageMaker-ը, որը ներառում է Lorem Ipsum-ի տարատեսակներ:
|
||||
|
||||
Български
|
||||
|
||||
Lorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия. Lorem Ipsum е индустриален стандарт от около 1500 година, когато неизвестен печатар взема няколко печатарски букви и ги разбърква, за да напечата с тях книга с примерни шрифтове. Този начин не само е оцелял повече от 5 века, но е навлязъл и в публикуването на електронни издания като е запазен почти без промяна. Популяризиран е през 60те години на 20ти век със издаването на Letraset листи, съдържащи Lorem Ipsum пасажи, популярен е и в наши дни във софтуер за печатни издания като Aldus PageMaker, който включва различни версии на Lorem Ipsum.
|
||||
|
||||
Català
|
||||
|
||||
Lorem Ipsum és un text de farciment usat per la indústria de la tipografia i la impremta. Lorem Ipsum ha estat el text estàndard de la indústria des de l’any 1500, quan un impressor desconegut va fer servir una galerada de text i la va mesclar per crear un llibre de mostres tipogràfiques. No només ha sobreviscut cinc segles, sinó que ha fet el salt cap a la creació de tipus de lletra electrònics, romanent essencialment sense canvis. Es va popularitzar l’any 1960 amb el llançament de fulls Letraset que contenien passatges de Lorem Ipsum, i més recentment amb programari d’autoedició com Aldus Pagemaker que inclou versions de Lorem Ipsum.
|
||||
|
||||
Hrvatski
|
||||
|
||||
Lorem Ipsum je jednostavno probni tekst koji se koristi u tiskarskoj i slovoslagarskoj industriji. Lorem Ipsum postoji kao industrijski standard još od 16-og stoljeća, kada je nepoznati tiskar uzeo tiskarsku galiju slova i posložio ih da bi napravio knjigu s uzorkom tiska. Taj je tekst ne samo preživio pet stoljeća, već se i vinuo u svijet elektronskog slovoslagarstva, ostajući u suštini nepromijenjen. Postao je popularan tijekom 1960-ih s pojavom Letraset listova s odlomcima Lorem Ipsum-a, a u skorije vrijeme sa software-om za stolno izdavaštvo kao što je Aldus PageMaker koji također sadrži varijante Lorem Ipsum-a.
|
||||
|
||||
Česky
|
||||
|
||||
Lorem Ipsum je demonstrativní výplňový text používaný v tiskařském a knihařském průmyslu. Lorem Ipsum je považováno za standard v této oblasti už od začátku 16. století, kdy dnes neznámý tiskař vzal kusy textu a na jejich základě vytvořil speciální vzorovou knihu. Jeho odkaz nevydržel pouze pět století, on přežil i nástup elektronické sazby v podstatě beze změny. Nejvíce popularizováno bylo Lorem Ipsum v šedesátých letech 20. století, kdy byly vydávány speciální vzorníky s jeho pasážemi a později pak díky počítačovým DTP programům jako Aldus PageMaker.
|
||||
|
||||
Româna
|
||||
|
||||
Lorem Ipsum este pur şi simplu o machetă pentru text a industriei tipografice. Lorem Ipsum a fost macheta standard a industriei încă din secolul al XVI-lea, când un tipograf anonim a luat o planşetă de litere şi le-a amestecat pentru a crea o carte demonstrativă pentru literele respective. Nu doar că a supravieţuit timp de cinci secole, dar şi a facut saltul în tipografia electronică practic neschimbată. A fost popularizată în anii ’60 odată cu ieşirea colilor Letraset care conţineau pasaje Lorem Ipsum, iar mai recent, prin programele de publicare pentru calculator, ca Aldus PageMaker care includeau versiuni de Lorem Ipsum.
|
||||
|
||||
Српски
|
||||
|
||||
Lorem Ipsum је једноставно модел текста који се користи у штампарској и словослагачкој индустрији. Lorem ipsum је био стандард за модел текста још од 1500. године, када је непознати штампар узео кутију са словима и сложио их како би направио узорак књиге. Не само што је овај модел опстао пет векова, него је чак почео да се користи и у електронским медијима, непроменивши се. Популаризован је шездесетих година двадесетог века заједно са листовима летерсета који су садржали Lorem Ipsum пасусе, а данас са софтверским пакетом за прелом као што је Aldus PageMaker који је садржао Lorem Ipsum верзије.
|
8
test/_pages/markup.md
Normal file
8
test/_pages/markup.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: Markup
|
||||
layout: tag
|
||||
permalink: /tags/markup/
|
||||
taxonomy: markup
|
||||
---
|
||||
|
||||
Sample post listing for the tag `markup`.
|
7
test/_pages/page-a.md
Normal file
7
test/_pages/page-a.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Page A"
|
||||
permalink: /page-a/
|
||||
date: 2011-06-23T18:38:52+00:00
|
||||
---
|
||||
|
||||
Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
|
10
test/_pages/page-archive.html
Normal file
10
test/_pages/page-archive.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
layout: archive
|
||||
title: "Page Archive"
|
||||
permalink: /page-archive/
|
||||
author_profile: false
|
||||
---
|
||||
|
||||
{% for post in site.pages %}
|
||||
{% include archive-single.html %}
|
||||
{% endfor %}
|
7
test/_pages/page-b.md
Normal file
7
test/_pages/page-b.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Page B"
|
||||
permalink: /page-b/
|
||||
date: 2011-06-23T18:39:14+00:00
|
||||
---
|
||||
|
||||
(lorem ipsum)
|
10
test/_pages/portfolio-archive.md
Normal file
10
test/_pages/portfolio-archive.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Portfolio
|
||||
layout: collection
|
||||
permalink: /portfolio/
|
||||
collection: portfolio
|
||||
entries_layout: grid
|
||||
classes: wide
|
||||
---
|
||||
|
||||
Sample document listing for the collection `_portfolio`.
|
59
test/_pages/post-archive-feature-rows.html
Normal file
59
test/_pages/post-archive-feature-rows.html
Normal file
|
@ -0,0 +1,59 @@
|
|||
---
|
||||
layout: archive
|
||||
title: "Post Archive with Feature Rows"
|
||||
permalink: /post-archive-feature-rows/
|
||||
author_profile: true
|
||||
feature_row:
|
||||
- image_path: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
title: "Placeholder 1"
|
||||
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder 2"
|
||||
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
- image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
title: "Placeholder 3"
|
||||
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||
feature_row2:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder Image Left Aligned"
|
||||
excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`'
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
feature_row3:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder Image Right Aligned"
|
||||
excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`'
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
feature_row4:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder Image Center Aligned"
|
||||
excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`'
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
---
|
||||
|
||||
{% for post in site.posts limit: 5 %}
|
||||
{% include archive-single.html %}
|
||||
{% endfor %}
|
||||
|
||||
{% include feature_row id="intro" type="center" %}
|
||||
|
||||
{% include feature_row %}
|
||||
|
||||
{% include feature_row id="feature_row2" type="left" %}
|
||||
|
||||
{% include feature_row id="feature_row3" type="right" %}
|
||||
|
||||
{% include feature_row id="feature_row4" type="center" %}
|
9
test/_pages/recipes-archive.md
Normal file
9
test/_pages/recipes-archive.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: collection
|
||||
title: "Recipes"
|
||||
collection: recipes
|
||||
permalink: /recipes-archive/
|
||||
author_profile: false
|
||||
---
|
||||
|
||||
Sample document listing for the collection `_recipes`.
|
15
test/_pages/sample-page.md
Normal file
15
test/_pages/sample-page.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
title: "Sample Page"
|
||||
permalink: /sample-page/
|
||||
date: 2016-02-24T03:02:20+00:00
|
||||
---
|
||||
|
||||
This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:
|
||||
|
||||
> Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi'a coladas. (And gettin' caught in the rain.)
|
||||
|
||||
...or something like this:
|
||||
|
||||
> The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
|
||||
|
||||
You should probably delete this page and create new pages for your content. Have fun!
|
5
test/_pages/search.md
Normal file
5
test/_pages/search.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Search
|
||||
layout: search
|
||||
permalink: /search/
|
||||
---
|
35
test/_pages/sitemap.md
Normal file
35
test/_pages/sitemap.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
layout: archive
|
||||
title: "Sitemap"
|
||||
permalink: /sitemap/
|
||||
author_profile: false
|
||||
---
|
||||
|
||||
A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ '/sitemap.xml' | relative_url }}) available for digesting as well.
|
||||
|
||||
<h2>Pages</h2>
|
||||
{% for post in site.pages %}
|
||||
{% include archive-single.html %}
|
||||
{% endfor %}
|
||||
|
||||
<h2>Posts</h2>
|
||||
{% for post in site.posts %}
|
||||
{% include archive-single.html %}
|
||||
{% endfor %}
|
||||
|
||||
{% capture written_label %}'None'{% endcapture %}
|
||||
|
||||
{% for collection in site.collections %}
|
||||
{% unless collection.output == false or collection.label == "posts" %}
|
||||
{% capture label %}{{ collection.label }}{% endcapture %}
|
||||
{% if label != written_label %}
|
||||
<h2>{{ label }}</h2>
|
||||
{% capture written_label %}{{ label }}{% endcapture %}
|
||||
{% endif %}
|
||||
{% endunless %}
|
||||
{% for post in collection.docs %}
|
||||
{% unless collection.output == false or collection.label == "posts" %}
|
||||
{% include archive-single.html %}
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
67
test/_pages/splash-page.md
Normal file
67
test/_pages/splash-page.md
Normal file
|
@ -0,0 +1,67 @@
|
|||
---
|
||||
title: "Splash Page"
|
||||
layout: splash
|
||||
permalink: /splash-page/
|
||||
date: 2016-03-23T11:48:41-04:00
|
||||
header:
|
||||
overlay_color: "#000"
|
||||
overlay_filter: "0.5"
|
||||
overlay_image: /assets/images/unsplash-image-1.jpg
|
||||
actions:
|
||||
- label: "Learn More"
|
||||
url: "/terms/"
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
excerpt: "Bacon ipsum dolor sit amet salami ham hock ham, hamburger corned beef short ribs kielbasa biltong t-bone drumstick tri-tip tail sirloin pork chop."
|
||||
intro:
|
||||
- excerpt: 'Nullam suscipit et nam, tellus velit pellentesque at malesuada, enim eaque. Quis nulla, netus tempor in diam gravida tincidunt, *proin faucibus* voluptate felis id sollicitudin. Centered with `type="center"`'
|
||||
feature_row:
|
||||
- image_path: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
image_caption: "Image courtesy of [Unsplash](https://unsplash.com/)"
|
||||
alt: "placeholder image 1"
|
||||
title: "Placeholder 1"
|
||||
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder 2"
|
||||
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
- image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
title: "Placeholder 3"
|
||||
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||
feature_row2:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder Image Left Aligned"
|
||||
excerpt: 'This is some sample content that goes here with **Markdown** formatting. Left aligned with `type="left"`'
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
feature_row3:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder Image Right Aligned"
|
||||
excerpt: 'This is some sample content that goes here with **Markdown** formatting. Right aligned with `type="right"`'
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
feature_row4:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Placeholder Image Center Aligned"
|
||||
excerpt: 'This is some sample content that goes here with **Markdown** formatting. Centered with `type="center"`'
|
||||
url: "#test-link"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
---
|
||||
|
||||
{% include feature_row id="intro" type="center" %}
|
||||
|
||||
{% include feature_row %}
|
||||
|
||||
{% include feature_row id="feature_row2" type="left" %}
|
||||
|
||||
{% include feature_row id="feature_row3" type="right" %}
|
||||
|
||||
{% include feature_row id="feature_row4" type="center" %}
|
6
test/_pages/tag-archive.md
Normal file
6
test/_pages/tag-archive.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Posts by Tag"
|
||||
permalink: /tags-archive/
|
||||
layout: tags
|
||||
author_profile: true
|
||||
---
|
56
test/_pages/terms.md
Normal file
56
test/_pages/terms.md
Normal file
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
permalink: /terms/
|
||||
title: "Terms and Privacy Policy"
|
||||
last_modified_at: 2016-06-06
|
||||
toc: true
|
||||
---
|
||||
|
||||
## Privacy Policy
|
||||
|
||||
The privacy of my visitors is extremely important. This Privacy Policy outlines the types of personal information that is received and collected and how it is used.
|
||||
|
||||
First and foremost, I will never share your email address or any other personal information to anyone without your direct consent.
|
||||
|
||||
### Log Files
|
||||
|
||||
Like many other websites, this site uses log files to help learn about when, from where, and how often traffic flows to this site. The information in these log files include:
|
||||
|
||||
* Internet Protocol addresses (IP)
|
||||
* Types of browser
|
||||
* Internet Service Provider (ISP)
|
||||
* Date and time stamp
|
||||
* Referring and exit pages
|
||||
* Number of clicks
|
||||
|
||||
All of this information is not linked to anything that is personally identifiable.
|
||||
|
||||
### Cookies and Web Beacons
|
||||
|
||||
When you visit this site "convenience" cookies are stored on your computer when you submit a comment to help you log in faster to [Disqus](http://disqus.com) the next time you leave a comment.
|
||||
|
||||
Third-party advertisers may also place and read cookies on your browser and/or use web beacons to collect information. This site has no access or control over these cookies. You should review the respective privacy policies on any and all third-party ad servers for more information regarding their practices and how to opt-out.
|
||||
|
||||
If you wish to disable cookies, you may do so through your web browser options. Instructions for doing so can be found on the specific web browsers' websites.
|
||||
|
||||
#### Google Analytics
|
||||
|
||||
Google Analytics is a web analytics tool I use to help understand how visitors engage with this website. It reports website trends using cookies and web beacons without identifying individual visitors. You can read [Google Analytics Privacy Policy](http://www.google.com/analytics/learn/privacy.html).
|
||||
|
||||
#### Google Adsense
|
||||
|
||||
Google Adsense, a third party affiliate marketing network, uses cookies to help make sure I get a commission when you buy a product after clicking on a link or ad banner that takes you to the site of one of their merchants. You can read [Google Adsense Privacy Policy](http://support.google.com/adsense/bin/answer.py?hl=en&answer=48182).
|
||||
|
||||
## Disclosure Policy
|
||||
|
||||
I make money on this website through affiliate programs. If you click an affiliate link or ad banner and buy the product, you help support this website because I'll get a percentage of that sale.
|
||||
|
||||
Currently I'm an affiliate for Amazon and Google Adsense.
|
||||
|
||||
What this means for you:
|
||||
|
||||
* I became an affiliate to earn revenue towards the costs of running and maintaining this website. Where I have direct control over which ads are served on this website I offer only products that are directly related to the topic of this website and products that a reader/subscriber would have a genuine interest in or need of.
|
||||
* I do not and will not recommend a product just for the sake of making money.
|
||||
* I do not let the compensation I receive influence the content, topics, posts, or opinions expressed on this website.
|
||||
* I respect and value my readers too much to write anything other than my own genuine and objective opinions and advice.
|
||||
|
||||
Just like this website, my Disclosure Policy is a work in progress. As the revenue streams evolve, so will this page.
|
6
test/_pages/year-archive.md
Normal file
6
test/_pages/year-archive.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Posts by Year"
|
||||
permalink: /year-archive/
|
||||
layout: posts
|
||||
author_profile: true
|
||||
---
|
8
test/_pets/lhasa-apso.md
Normal file
8
test/_pets/lhasa-apso.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: "Lhasa Apso"
|
||||
excerpt: "The Lhasa Apso is a non-sporting dog breed originating in Tibet."
|
||||
---
|
||||
|
||||
> The Lhasa Apso (/ˈlɑːsə ˈæpsoʊ/ lah-sə ap-soh) is a non-sporting dog breed originating in Tibet. It was bred as an interior sentinel in the Buddhist monasteries, to alert the monks to any intruders who entered. Lhasa is the capital city of Tibet, and apso is a word in the Tibetan language meaning "bearded", so, Lhasa Apso simply means "long-haired Lhasa dog". There are, however, some who claim that the word "apso" is a form of the Tibetan word "rapso", meaning "goat-like", which would make the equivalent translation "wooly Lhasa dog".
|
||||
|
||||
> <cite>From Wikipedia, the free encyclopedia</cite>
|
8
test/_pets/tabby.md
Normal file
8
test/_pets/tabby.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: "Tabby"
|
||||
excerpt: "A tabby is any domestic cat that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually with a mark resembling an 'M' on its forehead."
|
||||
---
|
||||
|
||||
> A tabby is any domestic cat that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually together with a mark resembling an 'M' on its forehead. Tabbies are sometimes erroneously assumed to be a cat breed. In fact, the tabby pattern is found in many breeds, as well as among the general mixed-breed population. The tabby pattern is a naturally occurring feature that may be related to the coloration of the domestic cat's direct ancestor, the African wildcat, which (along with the European wildcat and Asiatic wildcat) has a similar coloration.
|
||||
|
||||
> <cite>From Wikipedia, the free encyclopedia</cite>
|
30
test/_portfolio/baz-boom-identity.md
Normal file
30
test/_portfolio/baz-boom-identity.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: "Baz Boom Identity"
|
||||
excerpt: "Baz Boom design system including logo mark, website design, and branding applications."
|
||||
header:
|
||||
image: /assets/images/unsplash-gallery-image-1.jpg
|
||||
teaser: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
sidebar:
|
||||
- title: "Role"
|
||||
image: http://placehold.it/350x250
|
||||
image_alt: "logo"
|
||||
text: "Designer, Front-End Developer"
|
||||
- title: "Responsibilities"
|
||||
text: "Reuters try PR stupid commenters should isn't a business model"
|
||||
gallery:
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 3"
|
||||
---
|
||||
|
||||
Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman.
|
||||
|
||||
{% include gallery caption="This is a sample gallery to go along with this case study." %}
|
||||
|
||||
hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight.
|
30
test/_portfolio/fizz-bang-identity.md
Normal file
30
test/_portfolio/fizz-bang-identity.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: "Fizz Bang Identity"
|
||||
excerpt: "Fizz Bang design system including logo mark, website design, and branding applications."
|
||||
header:
|
||||
image: /assets/images/unsplash-gallery-image-2.jpg
|
||||
teaser: assets/images/unsplash-gallery-image-2-th.jpg
|
||||
sidebar:
|
||||
- title: "Role"
|
||||
image: http://placehold.it/350x250
|
||||
image_alt: "logo"
|
||||
text: "Designer, Front-End Developer"
|
||||
- title: "Responsibilities"
|
||||
text: "Reuters try PR stupid commenters should isn't a business model"
|
||||
gallery:
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 3"
|
||||
---
|
||||
|
||||
Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman.
|
||||
|
||||
{% include gallery caption="This is a sample gallery to go along with this case study." %}
|
||||
|
||||
hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight.
|
30
test/_portfolio/foo-bar-website.md
Normal file
30
test/_portfolio/foo-bar-website.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: "Foo Bar Identity"
|
||||
excerpt: "Foo Bar design system including logo mark, website design, and branding applications."
|
||||
header:
|
||||
image: /assets/images/foo-bar-identity.jpg
|
||||
teaser: /assets/images/foo-bar-identity-th.jpg
|
||||
sidebar:
|
||||
- title: "Role"
|
||||
image: http://placehold.it/350x250
|
||||
image_alt: "logo"
|
||||
text: "Designer, Front-End Developer"
|
||||
- title: "Responsibilities"
|
||||
text: "Reuters try PR stupid commenters should isn't a business model"
|
||||
gallery:
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 3"
|
||||
---
|
||||
|
||||
Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman.
|
||||
|
||||
{% include gallery caption="This is a sample gallery to go along with this case study." %}
|
||||
|
||||
hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight.
|
30
test/_portfolio/ginger-gulp-identity.md
Normal file
30
test/_portfolio/ginger-gulp-identity.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: "Ginger Gulp Identity"
|
||||
excerpt: "Ginger Gulp design system including logo mark, website design, and branding applications."
|
||||
header:
|
||||
image: /assets/images/unsplash-gallery-image-3.jpg
|
||||
teaser: assets/images/unsplash-gallery-image-3-th.jpg
|
||||
sidebar:
|
||||
- title: "Role"
|
||||
image: http://placehold.it/350x250
|
||||
image_alt: "logo"
|
||||
text: "Designer, Front-End Developer"
|
||||
- title: "Responsibilities"
|
||||
text: "Reuters try PR stupid commenters should isn't a business model"
|
||||
gallery:
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 3"
|
||||
---
|
||||
|
||||
Pictures of Goats section West Seattle Blog dingbat newspaper rubber cement Google+ newsroom cafe news.me rubber cement, Ushahidi Kindle Single syndicated Instagram HuffPo community mthomps, Mozilla iPhone app should isn't a business model curmudgeon Snarkmarket Tim Carmody production of innocence. Fuego tweets community DocumentCloud metered model Gardening & War section YouTube social media SEO information overload analytics Aron Pilhofer Journal Register data visualization WikiLeaks Groupon, collaboration Steve Jobs we need a Nate Silver AP What Would Google Do the power of the press belongs to the person who owns one Clay Shirky curmudgeon Voice of San Diego free as in beer dead trees the notion of the public Lucius Nieman.
|
||||
|
||||
{% include gallery caption="This is a sample gallery to go along with this case study." %}
|
||||
|
||||
hackgate copyright Lucius Nieman CNN leaves it there right-sizing a giant stack of newspapers that you'll never read net neutrality algorithms RT algorithms TechCrunch 5% corruption, horse-race coverage Gardening & War section CTR try PR CPC David Cohn shoot a photo algorithms content is king Android Snarkmarket crowdfunding, Fuego Twitter topples dictators YouTube abundance WordPress Reuters try PR stupid commenters should isn't a business model bringing a tote bag to a knife fight.
|
66
test/_posts/2009-05-15-edge-case-nested-and-mixed-lists.md
Normal file
66
test/_posts/2009-05-15-edge-case-nested-and-mixed-lists.md
Normal file
|
@ -0,0 +1,66 @@
|
|||
---
|
||||
title: "Edge Case: Nested and Mixed Lists"
|
||||
categories:
|
||||
- Edge Case
|
||||
tags:
|
||||
- content
|
||||
- css
|
||||
- edge case
|
||||
- lists
|
||||
- markup
|
||||
---
|
||||
|
||||
Nested and mixed lists are an interesting beast. It's a corner case to make sure that
|
||||
|
||||
* Lists within lists do not break the ordered list numbering order
|
||||
* Your list styles go deep enough.
|
||||
|
||||
### Ordered -- Unordered -- Ordered
|
||||
|
||||
1. ordered item
|
||||
2. ordered item
|
||||
* **unordered**
|
||||
* **unordered**
|
||||
1. ordered item
|
||||
2. ordered item
|
||||
3. ordered item
|
||||
4. ordered item
|
||||
|
||||
### Ordered -- Unordered -- Unordered
|
||||
|
||||
1. ordered item
|
||||
2. ordered item
|
||||
* **unordered**
|
||||
* **unordered**
|
||||
* unordered item
|
||||
* unordered item
|
||||
3. ordered item
|
||||
4. ordered item
|
||||
|
||||
### Unordered -- Ordered -- Unordered
|
||||
|
||||
* unordered item
|
||||
* unordered item
|
||||
1. ordered
|
||||
2. ordered
|
||||
* unordered item
|
||||
* unordered item
|
||||
* unordered item
|
||||
* unordered item
|
||||
|
||||
### Unordered -- Unordered -- Ordered
|
||||
|
||||
* unordered item
|
||||
* unordered item
|
||||
* unordered
|
||||
* unordered
|
||||
1. **ordered item**
|
||||
2. **ordered item**
|
||||
* unordered item
|
||||
* unordered item
|
||||
|
||||
### Task Lists
|
||||
|
||||
- [x] Finish my changes
|
||||
- [ ] Push my commits to GitHub
|
||||
- [ ] Open a pull request
|
49
test/_posts/2009-06-01-edge-case-many-tags.md
Normal file
49
test/_posts/2009-06-01-edge-case-many-tags.md
Normal file
|
@ -0,0 +1,49 @@
|
|||
---
|
||||
title: "Edge Case: Many Tags"
|
||||
categories:
|
||||
- Edge Case
|
||||
tags:
|
||||
- 8BIT
|
||||
- alignment
|
||||
- Articles
|
||||
- captions
|
||||
- categories
|
||||
- chat
|
||||
- comments
|
||||
- content
|
||||
- css
|
||||
- dowork
|
||||
- edge case
|
||||
- embeds
|
||||
- excerpt
|
||||
- Fail
|
||||
- featured image
|
||||
- FTW
|
||||
- Fun
|
||||
- gallery
|
||||
- html
|
||||
- image
|
||||
- Jekyll
|
||||
- layout
|
||||
- link
|
||||
- Love
|
||||
- markup
|
||||
- Mothership
|
||||
- Must Read
|
||||
- Nailed It
|
||||
- Pictures
|
||||
- Post Formats
|
||||
- quote
|
||||
- standard
|
||||
- Success
|
||||
- Swagger
|
||||
- Tags
|
||||
- template
|
||||
- title
|
||||
- twitter
|
||||
- Unseen
|
||||
- video
|
||||
- YouTube
|
||||
---
|
||||
|
||||
This post has many tags.
|
22
test/_posts/2009-07-02-edge-case-many-categories.md
Normal file
22
test/_posts/2009-07-02-edge-case-many-categories.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: "Edge Case: Many Categories"
|
||||
categories:
|
||||
- aciform
|
||||
- antiquarianism
|
||||
- arrangement
|
||||
- asmodeus
|
||||
- broder
|
||||
- buying
|
||||
- championship
|
||||
- chastening
|
||||
- disinclination
|
||||
- disinfection
|
||||
- dispatch
|
||||
- echappee
|
||||
- enphagy
|
||||
tags:
|
||||
- categories
|
||||
- edge case
|
||||
---
|
||||
|
||||
This post has many categories.
|
9
test/_posts/2009-08-06-edge-case-no-body-content.md
Normal file
9
test/_posts/2009-08-06-edge-case-no-body-content.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: "Edge Case: No Body Content"
|
||||
categories:
|
||||
- Edge Case
|
||||
tags:
|
||||
- content
|
||||
- edge case
|
||||
- layout
|
||||
---
|
10
test/_posts/2009-09-05-edge-case-no-yaml-title.md
Normal file
10
test/_posts/2009-09-05-edge-case-no-yaml-title.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
categories:
|
||||
- Edge Case
|
||||
tags:
|
||||
- edge case
|
||||
- layout
|
||||
- title
|
||||
---
|
||||
|
||||
This post has no title specified in the YAML Front Matter. Jekyll should auto-generate a title from the filename.
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: "Antidisestablishmentarianism"
|
||||
categories:
|
||||
- Edge Case
|
||||
tags:
|
||||
- content
|
||||
- css
|
||||
- edge case
|
||||
- html
|
||||
- layout
|
||||
- title
|
||||
---
|
||||
|
||||
## Title should not overflow the content area
|
||||
|
||||
A few things to check for:
|
||||
|
||||
* Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
|
||||
* Check the browser window / tab title.
|
||||
* If you are a theme developer, check that this text does not break anything.
|
||||
|
||||
The following CSS properties will help you support non-breaking text.
|
||||
|
||||
```css
|
||||
-ms-word-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
```
|
14
test/_posts/2009-10-05-edge-case-very-long-title.md
Normal file
14
test/_posts/2009-10-05-edge-case-very-long-title.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Suspicio? Bene ... tunc ibimus? Quis uh ... CONEXUS locus his diebus? Quisque semper aliquid videtur, in volutpat mauris. Nolo enim dicere. Vobis neque ab aliis. Ego feci memetipsum explicans. Gus mortuus est. Lorem opus habeo. Jackson Isai? Tu quoque ... A te quidem a ante. Vos scitis quod blinking res Ive 'been vocans super vos? Et conteram illud, et conteram hoc. Maledicant druggie excors. Iam hoc tu facere conatus sum ad te in omni tempore? Ludum mutavit. Verbum est ex. Et ... sunt occid"
|
||||
categories:
|
||||
- Edge Case
|
||||
tags:
|
||||
- content
|
||||
- css
|
||||
- edge case
|
||||
- html
|
||||
- layout
|
||||
- title
|
||||
---
|
||||
|
||||
Check for long titles and how they might break a template.
|
14
test/_posts/2010-01-07-post-modified.md
Normal file
14
test/_posts/2010-01-07-post-modified.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Post: Modified Date"
|
||||
last_modified_at: 2016-03-09T16:20:02-05:00
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- Post Formats
|
||||
- readability
|
||||
- standard
|
||||
---
|
||||
|
||||
This post has been updated and should show a modified date if used in a layout.
|
||||
|
||||
All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.
|
32
test/_posts/2010-01-07-post-standard.md
Normal file
32
test/_posts/2010-01-07-post-standard.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
title: "Post: Standard"
|
||||
excerpt_separator: "<!--more-->"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- Post Formats
|
||||
- readability
|
||||
- standard
|
||||
---
|
||||
|
||||
All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.
|
||||
|
||||
Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day.
|
||||
|
||||
<!--more-->
|
||||
|
||||
This post has a manual excerpt `<!--more-->` set after the second paragraph. The following YAML Front Matter has also be applied:
|
||||
|
||||
```yaml
|
||||
excerpt_separator: "<!--more-->"
|
||||
```
|
||||
|
||||
If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.
|
||||
|
||||
I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.
|
||||
|
||||
Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.
|
||||
|
||||
Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.
|
||||
|
||||
Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.
|
134
test/_posts/2010-01-08-post-chat.md
Normal file
134
test/_posts/2010-01-08-post-chat.md
Normal file
|
@ -0,0 +1,134 @@
|
|||
---
|
||||
title: "Post: Chat"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- chat
|
||||
- Post Formats
|
||||
---
|
||||
|
||||
Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.
|
||||
|
||||
Costello: Funny names?
|
||||
|
||||
Abbott: Nicknames, nicknames. Now, on the St. Louis team we have Who's on first, What's on second, I Don't Know is on third--
|
||||
|
||||
Costello: That's what I want to find out. I want you to tell me the names of the fellows on the St. Louis team.
|
||||
|
||||
Abbott: I'm telling you. Who's on first, What's on second, I Don't Know is on third--
|
||||
|
||||
Costello: You know the fellows' names?
|
||||
|
||||
Abbott: Yes.
|
||||
|
||||
Costello: Well, then who's playing first?
|
||||
|
||||
Abbott: Yes.
|
||||
|
||||
Costello: I mean the fellow's name on first base.
|
||||
|
||||
Abbott: Who.
|
||||
|
||||
Costello: The fellow playin' first base.
|
||||
|
||||
Abbott: Who.
|
||||
|
||||
Costello: The guy on first base.
|
||||
|
||||
Abbott: Who is on first.
|
||||
|
||||
Costello: Well, what are you askin' me for?
|
||||
|
||||
Abbott: I'm not asking you--I'm telling you. Who is on first.
|
||||
|
||||
Costello: I'm asking you--who's on first?
|
||||
|
||||
Abbott: That's the man's name.
|
||||
|
||||
Costello: That's who's name?
|
||||
|
||||
Abbott: Yes.
|
||||
|
||||
Costello: When you pay off the first baseman every month, who gets the money?
|
||||
|
||||
Abbott: Every dollar of it. And why not, the man's entitled to it.
|
||||
|
||||
Costello: Who is?
|
||||
|
||||
Abbott: Yes.
|
||||
|
||||
Costello: So who gets it?
|
||||
|
||||
Abbott: Why shouldn't he? Sometimes his wife comes down and collects it.
|
||||
|
||||
Costello: Who's wife?
|
||||
|
||||
Abbott: Yes. After all, the man earns it.
|
||||
|
||||
Costello: Who does?
|
||||
|
||||
Abbott: Absolutely.
|
||||
|
||||
Costello: Well, all I'm trying to find out is what's the guy's name on first base?
|
||||
|
||||
Abbott: Oh, no, no. What is on second base.
|
||||
|
||||
Costello: I'm not asking you who's on second.
|
||||
|
||||
Abbott: Who's on first!
|
||||
|
||||
Costello: St. Louis has a good outfield?
|
||||
|
||||
Abbott: Oh, absolutely.
|
||||
|
||||
Costello: The left fielder's name?
|
||||
|
||||
Abbott: Why.
|
||||
|
||||
Costello: I don't know, I just thought I'd ask.
|
||||
|
||||
Abbott: Well, I just thought I'd tell you.
|
||||
|
||||
Costello: Then tell me who's playing left field?
|
||||
|
||||
Abbott: Who's playing first.
|
||||
|
||||
Costello: Stay out of the infield! The left fielder's name?
|
||||
|
||||
Abbott: Why.
|
||||
|
||||
Costello: Because.
|
||||
|
||||
Abbott: Oh, he's center field.
|
||||
|
||||
Costello: Wait a minute. You got a pitcher on this team?
|
||||
|
||||
Abbott: Wouldn't this be a fine team without a pitcher?
|
||||
|
||||
Costello: Tell me the pitcher's name.
|
||||
|
||||
Abbott: Tomorrow.
|
||||
|
||||
Costello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who?
|
||||
|
||||
Abbott: Now, that's he first thing you've said right.
|
||||
|
||||
Costello: I DON'T EVEN KNOW WHAT I'M TALKING ABOUT!
|
||||
|
||||
Abbott: Don't get excited. Take it easy.
|
||||
|
||||
Costello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don't know. I don't know throws it back to tomorrow--a triple play.
|
||||
|
||||
Abbott: Yeah, it could be.
|
||||
|
||||
Costello: Another guy gets up and it's a long ball to center.
|
||||
|
||||
Abbott: Because.
|
||||
|
||||
Costello: Why? I don't know. And I don't care.
|
||||
|
||||
Abbott: What was that?
|
||||
|
||||
Costello: I said, I DON'T CARE!
|
||||
|
||||
Abbott: Oh, that's our shortstop!
|
68
test/_posts/2010-02-05-post-notice.md
Normal file
68
test/_posts/2010-02-05-post-notice.md
Normal file
|
@ -0,0 +1,68 @@
|
|||
---
|
||||
title: "Post: Notice"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- Post Formats
|
||||
- notice
|
||||
---
|
||||
|
||||
A notice displays information that explains nearby content. Often used to call attention to a particular detail.
|
||||
|
||||
When using Kramdown `{: .notice}` can be added after a sentence to assign the `.notice` to the `<p></p>` element.
|
||||
|
||||
**Changes in Service:** We just updated our [privacy policy](#) here to better service our customers. We recommend reviewing the changes.
|
||||
{: .notice}
|
||||
|
||||
**Primary Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. [Praesent libero](#). Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet.
|
||||
{: .notice--primary}
|
||||
|
||||
**Info Notice:** Lorem ipsum dolor sit amet, [consectetur adipiscing elit](#). Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet.
|
||||
{: .notice--info}
|
||||
|
||||
**Warning Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. [Integer nec odio](#). Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet.
|
||||
{: .notice--warning}
|
||||
|
||||
**Danger Notice:** Lorem ipsum dolor sit amet, [consectetur adipiscing](#) elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet.
|
||||
{: .notice--danger}
|
||||
|
||||
**Success Notice:** Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at [nibh elementum](#) imperdiet.
|
||||
{: .notice--success}
|
||||
|
||||
Want to wrap several paragraphs or other elements in a notice? Using Liquid to capture the content and then filter it with `markdownify` is a good way to go.
|
||||
|
||||
```html
|
||||
{% raw %}{% capture notice-2 %}
|
||||
#### New Site Features
|
||||
|
||||
* You can now have cover images on blog pages
|
||||
* Drafts will now auto-save while writing
|
||||
{% endcapture %}{% endraw %}
|
||||
|
||||
<div class="notice">{% raw %}{{ notice-2 | markdownify }}{% endraw %}</div>
|
||||
```
|
||||
|
||||
{% capture notice-2 %}
|
||||
#### New Site Features
|
||||
|
||||
* You can now have cover images on blog pages
|
||||
* Drafts will now auto-save while writing
|
||||
{% endcapture %}
|
||||
|
||||
<div class="notice">
|
||||
{{ notice-2 | markdownify }}
|
||||
</div>
|
||||
|
||||
Or you could skip the capture and stick with straight HTML.
|
||||
|
||||
```html
|
||||
<div class="notice">
|
||||
<h4>Message</h4>
|
||||
<p>A basic message.</p>
|
||||
</div>
|
||||
```
|
||||
|
||||
<div class="notice">
|
||||
<h4>Message</h4>
|
||||
<p>A basic message.</p>
|
||||
</div>
|
12
test/_posts/2010-02-05-post-quote.md
Normal file
12
test/_posts/2010-02-05-post-quote.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Post: Quote"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- Post Formats
|
||||
- quote
|
||||
---
|
||||
|
||||
> Only one thing is impossible for God: To find any sense in any copyright law on the planet.
|
||||
|
||||
> <cite><a href="http://www.brainyquote.com/quotes/quotes/m/marktwain163473.html">Mark Twain</a></cite>
|
15
test/_posts/2010-03-07-post-link.md
Normal file
15
test/_posts/2010-03-07-post-link.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
title: "Post: Link"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- link
|
||||
- Post Formats
|
||||
link: https://github.com
|
||||
---
|
||||
|
||||
This theme supports **link posts**, made famous by John Gruber. To use, just add `link: http://url-you-want-linked` to the post's YAML front matter and you're done.
|
||||
|
||||
> And this is how a quote looks.
|
||||
|
||||
Some [link](#) can also be shown.
|
11
test/_posts/2010-06-02-post-video-youtube.md
Normal file
11
test/_posts/2010-06-02-post-video-youtube.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: "Post: Video (YouTube)"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- Post Formats
|
||||
---
|
||||
|
||||
YouTube video embed below.
|
||||
|
||||
<iframe width="640" height="360" src="https://www.youtube-nocookie.com/embed/l2Of1-d5E5o?controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
|
22
test/_posts/2010-08-05-post-header-image-og-override.md
Normal file
22
test/_posts/2010-08-05-post-header-image-og-override.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: "Post: Header Image with OpenGraph Override"
|
||||
header:
|
||||
image: /assets/images/page-header-image.png
|
||||
og_image: /assets/images/page-header-og-image.png
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- image
|
||||
- layout
|
||||
last_modified_at: 2017-10-26T15:12:19-04:00
|
||||
---
|
||||
|
||||
This post has a header image with an OpenGraph override.
|
||||
|
||||
```yaml
|
||||
header:
|
||||
image: /assets/images/page-header-image.png
|
||||
og_image: /assets/images/page-header-og-image.png
|
||||
```
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: "Post: Overlay Image with OpenGraph Override"
|
||||
header:
|
||||
overlay_image: /assets/images/unsplash-image-1.jpg
|
||||
og_image: /assets/images/page-header-og-image.png
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
actions:
|
||||
- label: "Learn More"
|
||||
url: "https://unsplash.com"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- image
|
||||
- layout
|
||||
last_modified_at: 2017-10-26T15:12:19-04:00
|
||||
---
|
||||
|
||||
This post has a header image with an OpenGraph override.
|
||||
|
||||
```yaml
|
||||
header:
|
||||
overlay_image: /assets/images/unsplash-image-1.jpg
|
||||
og_image: /assets/images/page-header-og-image.png
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
actions:
|
||||
- label: "Learn More"
|
||||
url: "https://unsplash.com"
|
||||
```
|
10
test/_posts/2010-08-05-post-image-linked.md
Normal file
10
test/_posts/2010-08-05-post-image-linked.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "Post: Image (with Link)"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- image
|
||||
- Post Formats
|
||||
---
|
||||
|
||||
[](https://flic.kr/p/8ww3fZ)
|
44
test/_posts/2010-08-05-post-image-standard.md
Normal file
44
test/_posts/2010-08-05-post-image-standard.md
Normal file
|
@ -0,0 +1,44 @@
|
|||
---
|
||||
title: "Post: Image (Standard)"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- image
|
||||
- Post Formats
|
||||
---
|
||||
|
||||
The preferred way of using images is placing them in the `/assets/images/` directory and referencing them with an absolute path. Prepending the filename with `{% raw %}{{ site.url }}{{ site.baseurl }}/assets/images/{% endraw %}` will make sure your images display properly in feeds and such.
|
||||
|
||||
Standard image with no width modifier classes applied.
|
||||
|
||||
**HTML:**
|
||||
|
||||
```html
|
||||
{% raw %}<img src="{{ site.url }}{{ site.baseurl }}/assets/images/filename.jpg" alt="">{% endraw %}
|
||||
```
|
||||
|
||||
**or Kramdown:**
|
||||
|
||||
```markdown
|
||||
{% raw %}{% endraw %}
|
||||
```
|
||||
|
||||

|
||||
|
||||
Image that fills page content container by adding the `.full` class with:
|
||||
|
||||
**HTML:**
|
||||
|
||||
```html
|
||||
{% raw %}<img src="{{ site.url }}{{ site.baseurl }}/assets/images/filename.jpg" alt="" class="full">{% endraw %}
|
||||
```
|
||||
|
||||
**or Kramdown:**
|
||||
|
||||
```markdown
|
||||
{% raw %}
|
||||
{: .full}{% endraw %}
|
||||
```
|
||||
|
||||

|
||||
{: .full}
|
22
test/_posts/2010-08-05-post-teaser-image-og-override.md
Normal file
22
test/_posts/2010-08-05-post-teaser-image-og-override.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: "Post: Teaser Image with OpenGraph Override"
|
||||
header:
|
||||
teaser: /assets/images/page-header-teaser.png
|
||||
og_image: /assets/images/page-header-og-image.png
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- image
|
||||
- layout
|
||||
last_modified_at: 2017-10-26T15:12:19-04:00
|
||||
---
|
||||
|
||||
This post has a teaser image with an OpenGraph override.
|
||||
|
||||
```yaml
|
||||
header:
|
||||
teaser: /assets/images/page-header-teaser.png
|
||||
og_image: /assets/images/page-header-og-image.png
|
||||
```
|
21
test/_posts/2010-08-06-post-image-linked-caption.md
Normal file
21
test/_posts/2010-08-06-post-image-linked-caption.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: "Post: Image (Linked with Caption)"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- image
|
||||
- Post Formats
|
||||
---
|
||||
|
||||
{% capture fig_img %}
|
||||
[](https://unsplash.com/)
|
||||
{% endcapture %}
|
||||
|
||||
{% capture fig_caption %}
|
||||
Stairs? Were we're going we don't need no stairs.
|
||||
{% endcapture %}
|
||||
|
||||
<figure>
|
||||
{{ fig_img | markdownify | remove: "<p>" | remove: "</p>" }}
|
||||
<figcaption>{{ fig_caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
||||
</figure>
|
17
test/_posts/2010-08-07-post-image-caption.md
Normal file
17
test/_posts/2010-08-07-post-image-caption.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: "Post: Image (Caption)"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- image
|
||||
- Post Formats
|
||||
---
|
||||
|
||||
{% capture fig_img %}
|
||||

|
||||
{% endcapture %}
|
||||
|
||||
<figure>
|
||||
{{ fig_img | markdownify | remove: "<p>" | remove: "</p>" }}
|
||||
<figcaption>Photo from Unsplash.</figcaption>
|
||||
</figure>
|
142
test/_posts/2010-09-09-post-gallery.md
Normal file
142
test/_posts/2010-09-09-post-gallery.md
Normal file
|
@ -0,0 +1,142 @@
|
|||
---
|
||||
title: "Post: Gallery"
|
||||
categories:
|
||||
- Post Formats
|
||||
tags:
|
||||
- gallery
|
||||
- Post Formats
|
||||
- tiled
|
||||
gallery:
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
title: "Image 1 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Image 2 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 3"
|
||||
title: "Image 3 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 4"
|
||||
title: "Image 4 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 5"
|
||||
title: "Image 5 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 6"
|
||||
title: "Image 6 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 7"
|
||||
title: "Image 7 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 8"
|
||||
title: "Image 8 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 9"
|
||||
title: "Image 9 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 10"
|
||||
title: "Image 10 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 11"
|
||||
title: "Image 11 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 12"
|
||||
title: "Image 12 title caption"
|
||||
gallery2:
|
||||
- url: https://flic.kr/p/8a6Ven
|
||||
image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg
|
||||
alt: "Black and grays with a hint of green"
|
||||
- url: https://flic.kr/p/8a738X
|
||||
image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg
|
||||
alt: "Made for open text placement"
|
||||
- url: https://flic.kr/p/8a6VXP
|
||||
image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg
|
||||
alt: "Fog in the trees"
|
||||
gallery3:
|
||||
- image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
- image_path: /assets/images/unsplash-gallery-image-4-th.jpg
|
||||
alt: "placeholder image 4"
|
||||
---
|
||||
|
||||
These are gallery tests for image wrapped in `<figure>` elements.
|
||||
|
||||
To place a gallery add the necessary YAML Front Matter:
|
||||
|
||||
```yaml
|
||||
gallery:
|
||||
- url: /assets/images/unsplash-gallery-image-1.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-1-th.jpg
|
||||
alt: "placeholder image 1"
|
||||
title: "Image 1 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-2.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-2-th.jpg
|
||||
alt: "placeholder image 2"
|
||||
title: "Image 2 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-3.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-3-th.jpg
|
||||
alt: "placeholder image 3"
|
||||
title: "Image 3 title caption"
|
||||
- url: /assets/images/unsplash-gallery-image-4.jpg
|
||||
image_path: /assets/images/unsplash-gallery-image-4-th.jpg
|
||||
alt: "placeholder image 4"
|
||||
title: "Image 4 title caption"
|
||||
```
|
||||
|
||||
And then drop-in the gallery include --- gallery `caption` is optional.
|
||||
|
||||
```liquid
|
||||
{% raw %}{% include gallery caption="This is a sample gallery with **Markdown support**." %}{% endraw %}
|
||||
```
|
||||
|
||||
{% include gallery caption="This is a sample gallery with **Markdown support**." %}
|
||||
|
||||
This is some text after the gallery just to make sure that everything aligns properly.
|
||||
|
||||
Here comes another gallery, this time set the `id` to match 2nd gallery hash in YAML Front Matter.
|
||||
|
||||
```yaml
|
||||
gallery2:
|
||||
- url: https://flic.kr/p/8a6Ven
|
||||
image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg
|
||||
alt: "Black and grays with a hint of green"
|
||||
- url: https://flic.kr/p/8a738X
|
||||
image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg
|
||||
alt: "Made for open text placement"
|
||||
- url: https://flic.kr/p/8a6VXP
|
||||
image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg
|
||||
alt: "Fog in the trees"
|
||||
```
|
||||
|
||||
And place it like so:
|
||||
|
||||
```liquid
|
||||
{% raw %}{% include gallery id="gallery2" caption="This is a second gallery example with images hosted externally." %}{% endraw %}
|
||||
```
|
||||
|
||||
{% include gallery id="gallery2" caption="This is a second gallery example with images hosted externally." %}
|
||||
|
||||
And for giggles one more gallery just to make sure this works. To fill page content container add `class="full"`.
|
||||
|
||||
{% include gallery id="gallery3" class="full" caption="This is a third gallery example with two images and fills the entire content container." %}
|
||||
|
||||
Gallery column layout can be overrided by setting a `layout`.
|
||||
|
||||
```liquid
|
||||
{% raw %}{% include gallery id="gallery" layout="half" caption="This is a half gallery layout example." %}{% endraw %}
|
||||
```
|
||||
|
||||
{% include gallery id="gallery" layout="half" caption="This is a half gallery layout example." %}
|
15
test/_posts/2010-09-10-post-twitter-embeds.md
Normal file
15
test/_posts/2010-09-10-post-twitter-embeds.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
title: "Post: Twitter Embed"
|
||||
categories:
|
||||
- Media
|
||||
tags:
|
||||
- content
|
||||
- embeds
|
||||
- media
|
||||
- twitter
|
||||
---
|
||||
|
||||
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">🎨 Finally got around to adding all my <a href="https://twitter.com/procreateapp">@procreateapp</a> creations with time lapse videos <a href="https://t.co/1nNbkefC3L">https://t.co/1nNbkefC3L</a> <a href="https://t.co/gcNLJoJ0Gn">pic.twitter.com/gcNLJoJ0Gn</a></p>— Michael Rose (@mmistakes) <a href="https://twitter.com/mmistakes/status/662678050795094016">November 6, 2015</a></blockquote>
|
||||
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
|
||||
This post tests Twitter Embeds.
|
8
test/_posts/2010-10-25-post-future-date.md
Normal file
8
test/_posts/2010-10-25-post-future-date.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: "Post: Future Date"
|
||||
date: 9999-12-31
|
||||
categories:
|
||||
- Post
|
||||
---
|
||||
|
||||
This post lives in the future and is dated {{ page.date | date: "%c" }}. When building Jekyll with the `--future` flag it should appear.
|
14
test/_posts/2012-01-02-layout-comments-disabled.md
Normal file
14
test/_posts/2012-01-02-layout-comments-disabled.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Layout: Comments Disabled"
|
||||
comments: false
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- comments
|
||||
- layout
|
||||
---
|
||||
|
||||
This post has its comments disabled.
|
||||
|
||||
There should be no comment form.
|
12
test/_posts/2012-01-02-layout-comments.md
Normal file
12
test/_posts/2012-01-02-layout-comments.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Layout: Comments Enabled"
|
||||
comments: true
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- comments
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display comments.
|
18
test/_posts/2012-01-02-layout-read-time-disabled.md
Normal file
18
test/_posts/2012-01-02-layout-read-time-disabled.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: "Layout: Read Time Disabled"
|
||||
read_time: false
|
||||
tags:
|
||||
- read time
|
||||
---
|
||||
|
||||
This post has reading time disabled. The estimated time that it takes to read this post should not be showing if `read_time: false` is set in `_config.yml` or in this post's YAML Front Matter.
|
||||
|
||||
If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.
|
||||
|
||||
I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.
|
||||
|
||||
Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.
|
||||
|
||||
Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.
|
||||
|
||||
Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.
|
18
test/_posts/2012-01-02-layout-read-time.md
Normal file
18
test/_posts/2012-01-02-layout-read-time.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: "Layout: Read Time Enabled"
|
||||
read_time: true
|
||||
tags:
|
||||
- read time
|
||||
---
|
||||
|
||||
This post has reading time enabled. The estimated time that it takes to read this post should show if also enabled in `_config.yml` with `read_time: true`.
|
||||
|
||||
If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.
|
||||
|
||||
I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.
|
||||
|
||||
Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.
|
||||
|
||||
Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.
|
||||
|
||||
Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.
|
14
test/_posts/2012-01-02-layout-related-posts-disabled.md
Normal file
14
test/_posts/2012-01-02-layout-related-posts-disabled.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Layout: Related Posts Disabled"
|
||||
related: false
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- related posts
|
||||
- layout
|
||||
---
|
||||
|
||||
This post has related posts disabled.
|
||||
|
||||
Related post links should not appear.
|
12
test/_posts/2012-01-02-layout-related-posts.md
Normal file
12
test/_posts/2012-01-02-layout-related-posts.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Layout: Related Posts Enabled"
|
||||
related: true
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- related posts
|
||||
- layout
|
||||
---
|
||||
|
||||
This post has related posts enabled.
|
14
test/_posts/2012-01-02-layout-sharing-disabled.md
Normal file
14
test/_posts/2012-01-02-layout-sharing-disabled.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Layout: Social Sharing Links Disabled"
|
||||
share: false
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- social
|
||||
- layout
|
||||
---
|
||||
|
||||
This post has social sharing disabled.
|
||||
|
||||
Social sharing links should not appear.
|
12
test/_posts/2012-01-02-layout-sharing.md
Normal file
12
test/_posts/2012-01-02-layout-sharing.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Layout: Social Sharing Links Enabled"
|
||||
share: true
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- social
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display social sharing links.
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: "Layout: Reading Time, Comments, Social Sharing Links, and Related Posts Disabled"
|
||||
read_time: false
|
||||
comments: false
|
||||
share: false
|
||||
related: false
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- related posts
|
||||
- social
|
||||
- comments
|
||||
- layout
|
||||
---
|
||||
|
||||
This post has reading time, comments, social sharing links, and related posts disabled.
|
||||
|
||||
Reading time, comments, social sharing and related post links should not appear.
|
139
test/_posts/2012-01-03-layout-table-of-contents-include-post.md
Normal file
139
test/_posts/2012-01-03-layout-table-of-contents-include-post.md
Normal file
|
@ -0,0 +1,139 @@
|
|||
---
|
||||
title: "Layout: Post with Nested Table of Contents via Helper"
|
||||
tags:
|
||||
- table of contents
|
||||
---
|
||||
|
||||
Tests table of contents with multiple levels to verify indentation is readible via helper include (deprecated).
|
||||
|
||||
```
|
||||
{% raw %}{% include toc %}{% endraw %}
|
||||
```
|
||||
|
||||
{% include toc %}
|
||||
|
||||
# Enim laboris id ea elit elit deserunt
|
||||
|
||||
Magna incididunt elit id enim nisi quis excepteur reprehenderit Lorem dolore dolore ad enim. Labore esse elit excepteur et elit dolor. Elit ut consectetur labore velit elit esse voluptate id commodo. Magna cillum officia consequat non occaecat mollit esse nisi quis.
|
||||
|
||||
Nostrud veniam excepteur commodo enim pariatur velit est. Dolor consequat elit occaecat enim veniam ullamco qui est anim ex elit. Est minim aute magna laborum reprehenderit magna reprehenderit ullamco voluptate id sit aliqua. Id labore veniam ad duis aliquip commodo qui ex ut ipsum irure. In et sit ea cupidatat consectetur in nisi amet in cupidatat excepteur commodo amet.
|
||||
|
||||
## 2 Sit adipisicing tempor duis velit cupidatat occaecat do amet
|
||||
|
||||
Ad non dolore irure in. In do ut nostrud reprehenderit consequat aliqua sunt culpa voluptate amet minim ea. Eu dolore deserunt consectetur eu in minim sit nulla id id est amet consectetur. Tempor dolore ipsum magna amet velit aliquip ea anim non eu Lorem deserunt. Irure excepteur id adipisicing elit dolor ipsum eiusmod non nulla nisi sint qui et. Occaecat pariatur tempor ex nisi pariatur.
|
||||
|
||||
Proident culpa nostrud id est qui fugiat duis aute. Cillum commodo pariatur nostrud culpa Lorem exercitation non. Consequat elit deserunt dolore voluptate sunt labore minim ut consequat minim.
|
||||
|
||||
Sunt pariatur in ex non nulla proident ex ullamco Lorem do ipsum. Cillum est mollit reprehenderit excepteur labore labore elit dolore adipisicing ad quis quis aliqua sunt. Proident amet est reprehenderit deserunt amet cupidatat incididunt irure est elit.
|
||||
|
||||
### 2.1 Ex et quis exercitation fugiat excepteur eiusmod mollit consequat id pariatur non adipisicing magna tempor
|
||||
|
||||
Nostrud sunt nostrud incididunt adipisicing officia esse minim irure duis dolore adipisicing cupidatat. Eu non labore veniam ad sunt pariatur qui. Irure reprehenderit qui elit duis cillum sit officia consectetur sint deserunt do aute velit. Do id occaecat magna occaecat reprehenderit veniam pariatur Lorem. Officia sit cupidatat adipisicing laborum.
|
||||
|
||||
#### 2.1.1 Ut nostrud reprehenderit proident culpa enim irure cupidatat sunt ex ea minim nostrud
|
||||
|
||||
Laborum laboris et ut proident sit qui pariatur nisi commodo. Deserunt eiusmod eiusmod elit anim exercitation quis. Anim laboris irure minim elit fugiat velit esse officia amet reprehenderit id. Dolor eiusmod incididunt excepteur sint aute qui esse nostrud. Nisi qui adipisicing consectetur enim pariatur sint veniam esse.
|
||||
|
||||
#### 2.1.2 Nisi non nisi ullamco ipsum cillum
|
||||
Minim officia tempor eiusmod sint magna reprehenderit do amet ex velit. Irure nulla ut veniam eu veniam proident esse pariatur cillum. Esse anim et proident cillum esse magna sint.
|
||||
|
||||
#### 2.1.3 Ut pariatur do do eiusmod consequat do pariatur nisi ex anim reprehenderit nostrud
|
||||
Reprehenderit consectetur tempor labore dolore ad. Ullamco qui sunt quis deserunt id ipsum sit qui nisi esse deserunt ad exercitation. Dolore qui in mollit ex qui minim et ipsum reprehenderit. Tempor magna ipsum proident voluptate mollit quis consectetur veniam non aliquip cupidatat nisi culpa aute.
|
||||
|
||||
##### 2.1.1.1 Ut aute quis ipsum fugiat dolor
|
||||
Occaecat excepteur et ea et exercitation ad aute minim incididunt incididunt aute sint officia aliquip. Quis cupidatat nostrud dolor consequat laboris eu ullamco qui esse excepteur aute. Veniam ut ipsum aute Lorem proident minim ea fugiat Lorem cillum. Qui esse id minim consequat ullamco aliqua pariatur ea mollit. Minim ea ipsum laborum consequat esse mollit pariatur. Voluptate sit voluptate non ut consectetur irure laboris ex adipisicing dolore elit aliquip velit. In eu veniam voluptate incididunt aute eu reprehenderit ut id voluptate.
|
||||
|
||||
##### 2.1.1.2 Consequat nostrud quis officia et aliquip quis magna mollit veniam
|
||||
Magna duis exercitation dolor amet. Ea irure laborum sit officia reprehenderit enim aute magna duis. Elit fugiat ut proident sit.
|
||||
|
||||
###### 2.1.1.1.1 Id cillum proident labore occaecat reprehenderit excepteur fugiat est
|
||||
|
||||
Irure qui veniam incididunt irure consequat mollit consectetur est nostrud deserunt eiusmod nostrud quis. Eiusmod id proident eu aute exercitation irure consectetur sit dolor dolor in esse. Qui eu dolor ea est magna amet laborum qui irure. Reprehenderit excepteur voluptate fugiat exercitation voluptate laboris nostrud qui magna et officia.
|
||||
|
||||
###### 2.1.1.1.2 In consectetur ea qui quis culpa nulla
|
||||
|
||||
Ad quis duis dolore voluptate laborum eiusmod consequat sint. Cupidatat officia ex laborum ad non mollit excepteur ea. Nostrud elit in consequat sunt adipisicing reprehenderit ipsum proident irure. Sint velit laborum sint laboris ea. Veniam occaecat et in Lorem proident minim deserunt labore laborum reprehenderit. Consequat laborum deserunt culpa consectetur. Incididunt reprehenderit amet esse duis dolore pariatur adipisicing quis elit.
|
||||
|
||||
###### 2.1.1.1.3 Culpa magna pariatur magna officia adipisicing ex minim ea do est
|
||||
|
||||
Dolore reprehenderit aute ex id. Ipsum laboris sit quis enim labore ut sint cillum exercitation. Commodo aliqua exercitation enim sunt velit do laborum mollit irure dolor.
|
||||
|
||||
###### 2.1.1.1.4 Veniam ipsum non reprehenderit pariatur
|
||||
|
||||
Laboris amet quis sunt id dolor consectetur Lorem id aliquip laboris fugiat. Non ex magna deserunt veniam eiusmod. Irure culpa culpa dolore pariatur. Elit enim deserunt ut amet adipisicing elit laborum exercitation cupidatat et. Aliqua aliqua laborum exercitation commodo reprehenderit reprehenderit amet laboris ea ea ex amet in. Aute minim voluptate et ipsum culpa consequat.
|
||||
|
||||
##### 2.1.1.3 Ut qui labore officia ad laboris eu amet minim tempor qui cupidatat duis aute
|
||||
|
||||
In in dolore laboris irure est consequat magna ea non aute cupidatat tempor. Officia sit pariatur consequat laborum aliqua nulla anim nisi aliquip reprehenderit consequat. Ad duis labore minim consequat reprehenderit labore ex minim cillum magna incididunt adipisicing dolor. Non velit mollit minim consectetur minim. Cillum elit et amet est reprehenderit non. Elit adipisicing nostrud ea veniam occaecat commodo deserunt.
|
||||
|
||||
##### 2.1.1.4 Magna ipsum nisi velit anim
|
||||
|
||||
Eiusmod tempor dolor proident pariatur consequat sit non nostrud. Eiusmod duis elit esse Lorem dolore et minim elit consectetur eu ullamco. Adipisicing sunt excepteur eu mollit in nostrud.
|
||||
|
||||
###### 2.1.1.4.1 Mollit nulla est tempor fugiat occaecat nostrud
|
||||
|
||||
Exercitation eu labore Lorem culpa id enim ut officia aute proident in est irure. Nostrud adipisicing magna elit tempor ipsum culpa in incididunt consectetur incididunt veniam aute tempor sint. Officia est consectetur sint sint nostrud proident mollit. Dolore duis proident mollit consectetur tempor.
|
||||
|
||||
###### 2.1.1.2.1 Culpa aliquip irure et nostrud esse consequat fugiat dolor
|
||||
|
||||
Ad ut commodo elit amet officia ipsum labore do amet. Eiusmod sint irure magna proident nisi adipisicing mollit excepteur mollit proident culpa duis. Est reprehenderit consequat eiusmod deserunt duis ipsum esse amet incididunt.
|
||||
|
||||
#### 2.1.4 Laboris exercitation nisi tempor dolore
|
||||
|
||||
Elit culpa est eiusmod nostrud occaecat. Labore incididunt nostrud consectetur sint. Ut pariatur laborum incididunt culpa proident incididunt veniam veniam laboris adipisicing mollit. Ullamco magna tempor fugiat veniam in ipsum nisi mollit labore amet et sit quis. In consectetur fugiat Lorem culpa veniam minim. Irure aliqua est mollit consectetur id Lorem velit minim sit velit. Eiusmod magna do dolor est id reprehenderit minim fugiat minim incididunt incididunt laboris velit consequat.
|
||||
|
||||
### 2.2 Officia irure duis et est sunt
|
||||
|
||||
Consequat anim quis non nulla. Eiusmod pariatur sunt non culpa culpa ipsum nulla anim in. Non ad exercitation ut reprehenderit ut dolor laborum tempor ad qui magna fugiat irure. Sint commodo ea sint sunt. Irure qui pariatur tempor veniam reprehenderit amet est. Amet laboris proident Lorem deserunt proident duis esse do sit eu dolor qui duis eu. Mollit laboris nisi aute nulla consectetur exercitation nulla aliqua anim.
|
||||
|
||||
## 3 Laborum eu magna proident proident tempor
|
||||
|
||||
Occaecat aliqua id voluptate mollit aliquip. Elit excepteur magna esse commodo pariatur reprehenderit in in quis. Id dolore proident proident mollit tempor duis magna ullamco nulla velit consequat. In ut est aliquip in commodo ullamco sit sint.
|
||||
|
||||
### 3.1 Amet enim do laboris ipsum aliqua eiusmod non eu
|
||||
|
||||
Laborum magna deserunt do anim quis proident adipisicing. Dolore qui ex minim reprehenderit. Consectetur in cillum ad dolore ut id deserunt irure aute sint magna dolore adipisicing.
|
||||
|
||||
### 3.2 Do exercitation ex elit incididunt sit cupidatat
|
||||
|
||||
Excepteur aliqua nisi ullamco sunt fugiat laborum elit aliquip officia culpa. Est exercitation enim laborum amet exercitation. Eu quis qui eiusmod incididunt id do aliquip nostrud do esse enim excepteur enim pariatur. Aute adipisicing velit non culpa quis exercitation. Quis cupidatat anim occaecat Lorem ad mollit aute eiusmod quis dolor duis. Proident anim et nostrud ut aliquip irure adipisicing reprehenderit proident dolore magna. Consequat eu fugiat esse proident duis eu proident fugiat laboris ea veniam nisi reprehenderit.
|
||||
|
||||
### 3.3 Officia aliquip fugiat ex pariatur nisi et nostrud adipisicing eu minim laboris eiusmod ea sunt
|
||||
|
||||
Consectetur irure elit nulla elit non officia. Culpa Lorem minim dolor laboris enim labore do minim laborum. Fugiat deserunt nisi ut do incididunt incididunt ea anim exercitation sit duis. Irure esse pariatur labore enim labore qui anim culpa laborum velit consequat. Culpa in adipisicing excepteur est ipsum. In reprehenderit eiusmod ad ad non.
|
||||
|
||||
### 3.4 Ipsum velit laborum est nostrud qui enim ullamco velit dolor Lorem magna
|
||||
|
||||
Nulla magna dolor minim commodo. Sunt nulla cupidatat consequat eiusmod elit irure eiusmod excepteur. Sit incididunt irure minim magna. Tempor ipsum exercitation minim sunt labore dolor ullamco veniam enim nisi veniam adipisicing occaecat proident.
|
||||
|
||||
### 3.5 Officia fugiat fugiat voluptate ullamco eiusmod duis minim aliqua consequat consectetur qui do sunt fugiat
|
||||
|
||||
Non aute culpa irure qui aute adipisicing aute id commodo id. Laborum ullamco laboris velit in quis duis ut consequat do minim. In minim amet ut reprehenderit et voluptate. In quis Lorem occaecat nostrud excepteur nostrud dolore in nulla ad Lorem nisi. Dolor exercitation Lorem qui sint aute ipsum officia eiusmod aliquip Lorem sit. Reprehenderit ex veniam excepteur laboris magna dolore fugiat sit exercitation esse et consequat in sit. Incididunt pariatur ad esse anim aute do id eu.
|
||||
|
||||
#### 3.5.1 Mollit laborum ea aliquip mollit quis commodo fugiat tempor deserunt exercitation sint culpa ipsum tempor
|
||||
|
||||
Est cillum laborum cupidatat ullamco cupidatat magna laborum enim duis consequat est eu. Magna cillum Lorem proident non ut officia. Esse irure et laboris eu occaecat aute.
|
||||
|
||||
##### 3.5.1.1 Nisi anim commodo consequat quis amet
|
||||
|
||||
Sunt eu dolor enim enim consectetur et anim irure dolor velit cillum. Esse reprehenderit cillum incididunt adipisicing amet nostrud adipisicing. Minim mollit nostrud ipsum ea ut sit ex elit. Do esse ad et ipsum nisi sint anim culpa excepteur ipsum. Commodo nisi irure qui reprehenderit incididunt.
|
||||
|
||||
###### 3.5.1.1.1 Culpa nulla Lorem adipisicing ut sit cupidatat laborum laborum cupidatat proident
|
||||
|
||||
Dolore dolor sit sunt anim eu amet consectetur quis ea proident ex aliqua. Sunt laborum consectetur consectetur enim velit eiusmod labore commodo commodo laboris deserunt. Eiusmod enim do amet laborum commodo qui.
|
||||
|
||||
### 3.6 Reprehenderit culpa consectetur veniam minim cillum in nostrud
|
||||
|
||||
Lorem dolore sit aliqua tempor do voluptate ut esse. Minim velit ad velit commodo minim laborum. Qui qui reprehenderit non proident ullamco veniam aliquip.
|
||||
|
||||
## 4 Laboris aute consequat id eu et Lorem amet
|
||||
|
||||
Ad qui voluptate dolor veniam. Veniam mollit aute eiusmod eu labore incididunt sint proident. Non minim consequat anim sint. Aliquip non nisi nostrud proident. Eiusmod ut duis commodo sunt laboris irure eu. Laboris quis amet ad qui officia.
|
||||
|
||||
## 5 Esse eu consequat consequat aliqua fugiat nulla ad labore consectetur eu pariatur nisi aute
|
||||
|
||||
Duis proident ullamco fugiat aliqua sunt anim ea do irure est amet quis nulla cillum. Commodo voluptate dolor culpa sint aliquip voluptate exercitation anim cillum ad eu in amet. Sint fugiat qui commodo quis ex eu commodo officia aliquip irure. Non dolore elit excepteur id laboris irure consequat magna consectetur. Qui proident deserunt culpa tempor sit aute velit proident cillum ea.
|
||||
|
||||
## 6 Aliquip sunt laborum excepteur cupidatat officia ad tempor veniam esse amet ea commodo sunt
|
||||
|
||||
Ex minim pariatur est nisi exercitation exercitation reprehenderit id aliqua deserunt est. Laborum ullamco do ipsum minim ipsum aliquip voluptate voluptate aliqua. Magna proident velit veniam et minim commodo officia officia mollit nisi. Excepteur occaecat deserunt irure adipisicing minim adipisicing cupidatat non anim exercitation ex. Amet quis sunt sint veniam non id nisi ipsum mollit voluptate quis tempor tempor.
|
134
test/_posts/2012-01-03-layout-table-of-contents-indent-post.md
Normal file
134
test/_posts/2012-01-03-layout-table-of-contents-indent-post.md
Normal file
|
@ -0,0 +1,134 @@
|
|||
---
|
||||
title: "Layout: Post with Nested Table of Contents"
|
||||
tags:
|
||||
- table of contents
|
||||
toc: true
|
||||
---
|
||||
|
||||
Tests table of contents with multiple levels to verify indentation is readible.
|
||||
|
||||
# Enim laboris id ea elit elit deserunt
|
||||
|
||||
Magna incididunt elit id enim nisi quis excepteur reprehenderit Lorem dolore dolore ad enim. Labore esse elit excepteur et elit dolor. Elit ut consectetur labore velit elit esse voluptate id commodo. Magna cillum officia consequat non occaecat mollit esse nisi quis.
|
||||
|
||||
Nostrud veniam excepteur commodo enim pariatur velit est. Dolor consequat elit occaecat enim veniam ullamco qui est anim ex elit. Est minim aute magna laborum reprehenderit magna reprehenderit ullamco voluptate id sit aliqua. Id labore veniam ad duis aliquip commodo qui ex ut ipsum irure. In et sit ea cupidatat consectetur in nisi amet in cupidatat excepteur commodo amet.
|
||||
|
||||
## 2 Sit adipisicing tempor duis velit cupidatat occaecat do amet
|
||||
|
||||
Ad non dolore irure in. In do ut nostrud reprehenderit consequat aliqua sunt culpa voluptate amet minim ea. Eu dolore deserunt consectetur eu in minim sit nulla id id est amet consectetur. Tempor dolore ipsum magna amet velit aliquip ea anim non eu Lorem deserunt. Irure excepteur id adipisicing elit dolor ipsum eiusmod non nulla nisi sint qui et. Occaecat pariatur tempor ex nisi pariatur.
|
||||
|
||||
Proident culpa nostrud id est qui fugiat duis aute. Cillum commodo pariatur nostrud culpa Lorem exercitation non. Consequat elit deserunt dolore voluptate sunt labore minim ut consequat minim.
|
||||
|
||||
Sunt pariatur in ex non nulla proident ex ullamco Lorem do ipsum. Cillum est mollit reprehenderit excepteur labore labore elit dolore adipisicing ad quis quis aliqua sunt. Proident amet est reprehenderit deserunt amet cupidatat incididunt irure est elit.
|
||||
|
||||
### 2.1 Ex et quis exercitation fugiat excepteur eiusmod mollit consequat id pariatur non adipisicing magna tempor
|
||||
|
||||
Nostrud sunt nostrud incididunt adipisicing officia esse minim irure duis dolore adipisicing cupidatat. Eu non labore veniam ad sunt pariatur qui. Irure reprehenderit qui elit duis cillum sit officia consectetur sint deserunt do aute velit. Do id occaecat magna occaecat reprehenderit veniam pariatur Lorem. Officia sit cupidatat adipisicing laborum.
|
||||
|
||||
#### 2.1.1 Ut nostrud reprehenderit proident culpa enim irure cupidatat sunt ex ea minim nostrud
|
||||
|
||||
Laborum laboris et ut proident sit qui pariatur nisi commodo. Deserunt eiusmod eiusmod elit anim exercitation quis. Anim laboris irure minim elit fugiat velit esse officia amet reprehenderit id. Dolor eiusmod incididunt excepteur sint aute qui esse nostrud. Nisi qui adipisicing consectetur enim pariatur sint veniam esse.
|
||||
|
||||
#### 2.1.2 Nisi non nisi ullamco ipsum cillum
|
||||
Minim officia tempor eiusmod sint magna reprehenderit do amet ex velit. Irure nulla ut veniam eu veniam proident esse pariatur cillum. Esse anim et proident cillum esse magna sint.
|
||||
|
||||
#### 2.1.3 Ut pariatur do do eiusmod consequat do pariatur nisi ex anim reprehenderit nostrud
|
||||
Reprehenderit consectetur tempor labore dolore ad. Ullamco qui sunt quis deserunt id ipsum sit qui nisi esse deserunt ad exercitation. Dolore qui in mollit ex qui minim et ipsum reprehenderit. Tempor magna ipsum proident voluptate mollit quis consectetur veniam non aliquip cupidatat nisi culpa aute.
|
||||
|
||||
##### 2.1.1.1 Ut aute quis ipsum fugiat dolor
|
||||
Occaecat excepteur et ea et exercitation ad aute minim incididunt incididunt aute sint officia aliquip. Quis cupidatat nostrud dolor consequat laboris eu ullamco qui esse excepteur aute. Veniam ut ipsum aute Lorem proident minim ea fugiat Lorem cillum. Qui esse id minim consequat ullamco aliqua pariatur ea mollit. Minim ea ipsum laborum consequat esse mollit pariatur. Voluptate sit voluptate non ut consectetur irure laboris ex adipisicing dolore elit aliquip velit. In eu veniam voluptate incididunt aute eu reprehenderit ut id voluptate.
|
||||
|
||||
##### 2.1.1.2 Consequat nostrud quis officia et aliquip quis magna mollit veniam
|
||||
Magna duis exercitation dolor amet. Ea irure laborum sit officia reprehenderit enim aute magna duis. Elit fugiat ut proident sit.
|
||||
|
||||
###### 2.1.1.1.1 Id cillum proident labore occaecat reprehenderit excepteur fugiat est
|
||||
|
||||
Irure qui veniam incididunt irure consequat mollit consectetur est nostrud deserunt eiusmod nostrud quis. Eiusmod id proident eu aute exercitation irure consectetur sit dolor dolor in esse. Qui eu dolor ea est magna amet laborum qui irure. Reprehenderit excepteur voluptate fugiat exercitation voluptate laboris nostrud qui magna et officia.
|
||||
|
||||
###### 2.1.1.1.2 In consectetur ea qui quis culpa nulla
|
||||
|
||||
Ad quis duis dolore voluptate laborum eiusmod consequat sint. Cupidatat officia ex laborum ad non mollit excepteur ea. Nostrud elit in consequat sunt adipisicing reprehenderit ipsum proident irure. Sint velit laborum sint laboris ea. Veniam occaecat et in Lorem proident minim deserunt labore laborum reprehenderit. Consequat laborum deserunt culpa consectetur. Incididunt reprehenderit amet esse duis dolore pariatur adipisicing quis elit.
|
||||
|
||||
###### 2.1.1.1.3 Culpa magna pariatur magna officia adipisicing ex minim ea do est
|
||||
|
||||
Dolore reprehenderit aute ex id. Ipsum laboris sit quis enim labore ut sint cillum exercitation. Commodo aliqua exercitation enim sunt velit do laborum mollit irure dolor.
|
||||
|
||||
###### 2.1.1.1.4 Veniam ipsum non reprehenderit pariatur
|
||||
|
||||
Laboris amet quis sunt id dolor consectetur Lorem id aliquip laboris fugiat. Non ex magna deserunt veniam eiusmod. Irure culpa culpa dolore pariatur. Elit enim deserunt ut amet adipisicing elit laborum exercitation cupidatat et. Aliqua aliqua laborum exercitation commodo reprehenderit reprehenderit amet laboris ea ea ex amet in. Aute minim voluptate et ipsum culpa consequat.
|
||||
|
||||
##### 2.1.1.3 Ut qui labore officia ad laboris eu amet minim tempor qui cupidatat duis aute
|
||||
|
||||
In in dolore laboris irure est consequat magna ea non aute cupidatat tempor. Officia sit pariatur consequat laborum aliqua nulla anim nisi aliquip reprehenderit consequat. Ad duis labore minim consequat reprehenderit labore ex minim cillum magna incididunt adipisicing dolor. Non velit mollit minim consectetur minim. Cillum elit et amet est reprehenderit non. Elit adipisicing nostrud ea veniam occaecat commodo deserunt.
|
||||
|
||||
##### 2.1.1.4 Magna ipsum nisi velit anim
|
||||
|
||||
Eiusmod tempor dolor proident pariatur consequat sit non nostrud. Eiusmod duis elit esse Lorem dolore et minim elit consectetur eu ullamco. Adipisicing sunt excepteur eu mollit in nostrud.
|
||||
|
||||
###### 2.1.1.4.1 Mollit nulla est tempor fugiat occaecat nostrud
|
||||
|
||||
Exercitation eu labore Lorem culpa id enim ut officia aute proident in est irure. Nostrud adipisicing magna elit tempor ipsum culpa in incididunt consectetur incididunt veniam aute tempor sint. Officia est consectetur sint sint nostrud proident mollit. Dolore duis proident mollit consectetur tempor.
|
||||
|
||||
###### 2.1.1.2.1 Culpa aliquip irure et nostrud esse consequat fugiat dolor
|
||||
|
||||
Ad ut commodo elit amet officia ipsum labore do amet. Eiusmod sint irure magna proident nisi adipisicing mollit excepteur mollit proident culpa duis. Est reprehenderit consequat eiusmod deserunt duis ipsum esse amet incididunt.
|
||||
|
||||
#### 2.1.4 Laboris exercitation nisi tempor dolore
|
||||
|
||||
Elit culpa est eiusmod nostrud occaecat. Labore incididunt nostrud consectetur sint. Ut pariatur laborum incididunt culpa proident incididunt veniam veniam laboris adipisicing mollit. Ullamco magna tempor fugiat veniam in ipsum nisi mollit labore amet et sit quis. In consectetur fugiat Lorem culpa veniam minim. Irure aliqua est mollit consectetur id Lorem velit minim sit velit. Eiusmod magna do dolor est id reprehenderit minim fugiat minim incididunt incididunt laboris velit consequat.
|
||||
|
||||
### 2.2 Officia irure duis et est sunt
|
||||
|
||||
Consequat anim quis non nulla. Eiusmod pariatur sunt non culpa culpa ipsum nulla anim in. Non ad exercitation ut reprehenderit ut dolor laborum tempor ad qui magna fugiat irure. Sint commodo ea sint sunt. Irure qui pariatur tempor veniam reprehenderit amet est. Amet laboris proident Lorem deserunt proident duis esse do sit eu dolor qui duis eu. Mollit laboris nisi aute nulla consectetur exercitation nulla aliqua anim.
|
||||
|
||||
## 3 Laborum eu magna proident proident tempor
|
||||
|
||||
Occaecat aliqua id voluptate mollit aliquip. Elit excepteur magna esse commodo pariatur reprehenderit in in quis. Id dolore proident proident mollit tempor duis magna ullamco nulla velit consequat. In ut est aliquip in commodo ullamco sit sint.
|
||||
|
||||
### 3.1 Amet enim do laboris ipsum aliqua eiusmod non eu
|
||||
|
||||
Laborum magna deserunt do anim quis proident adipisicing. Dolore qui ex minim reprehenderit. Consectetur in cillum ad dolore ut id deserunt irure aute sint magna dolore adipisicing.
|
||||
|
||||
### 3.2 Do exercitation ex elit incididunt sit cupidatat
|
||||
|
||||
Excepteur aliqua nisi ullamco sunt fugiat laborum elit aliquip officia culpa. Est exercitation enim laborum amet exercitation. Eu quis qui eiusmod incididunt id do aliquip nostrud do esse enim excepteur enim pariatur. Aute adipisicing velit non culpa quis exercitation. Quis cupidatat anim occaecat Lorem ad mollit aute eiusmod quis dolor duis. Proident anim et nostrud ut aliquip irure adipisicing reprehenderit proident dolore magna. Consequat eu fugiat esse proident duis eu proident fugiat laboris ea veniam nisi reprehenderit.
|
||||
|
||||
### 3.3 Officia aliquip fugiat ex pariatur nisi et nostrud adipisicing eu minim laboris eiusmod ea sunt
|
||||
|
||||
Consectetur irure elit nulla elit non officia. Culpa Lorem minim dolor laboris enim labore do minim laborum. Fugiat deserunt nisi ut do incididunt incididunt ea anim exercitation sit duis. Irure esse pariatur labore enim labore qui anim culpa laborum velit consequat. Culpa in adipisicing excepteur est ipsum. In reprehenderit eiusmod ad ad non.
|
||||
|
||||
### 3.4 Ipsum velit laborum est nostrud qui enim ullamco velit dolor Lorem magna
|
||||
|
||||
Nulla magna dolor minim commodo. Sunt nulla cupidatat consequat eiusmod elit irure eiusmod excepteur. Sit incididunt irure minim magna. Tempor ipsum exercitation minim sunt labore dolor ullamco veniam enim nisi veniam adipisicing occaecat proident.
|
||||
|
||||
### 3.5 Officia fugiat fugiat voluptate ullamco eiusmod duis minim aliqua consequat consectetur qui do sunt fugiat
|
||||
|
||||
Non aute culpa irure qui aute adipisicing aute id commodo id. Laborum ullamco laboris velit in quis duis ut consequat do minim. In minim amet ut reprehenderit et voluptate. In quis Lorem occaecat nostrud excepteur nostrud dolore in nulla ad Lorem nisi. Dolor exercitation Lorem qui sint aute ipsum officia eiusmod aliquip Lorem sit. Reprehenderit ex veniam excepteur laboris magna dolore fugiat sit exercitation esse et consequat in sit. Incididunt pariatur ad esse anim aute do id eu.
|
||||
|
||||
#### 3.5.1 Mollit laborum ea aliquip mollit quis commodo fugiat tempor deserunt exercitation sint culpa ipsum tempor
|
||||
|
||||
Est cillum laborum cupidatat ullamco cupidatat magna laborum enim duis consequat est eu. Magna cillum Lorem proident non ut officia. Esse irure et laboris eu occaecat aute.
|
||||
|
||||
##### 3.5.1.1 Nisi anim commodo consequat quis amet
|
||||
|
||||
Sunt eu dolor enim enim consectetur et anim irure dolor velit cillum. Esse reprehenderit cillum incididunt adipisicing amet nostrud adipisicing. Minim mollit nostrud ipsum ea ut sit ex elit. Do esse ad et ipsum nisi sint anim culpa excepteur ipsum. Commodo nisi irure qui reprehenderit incididunt.
|
||||
|
||||
###### 3.5.1.1.1 Culpa nulla Lorem adipisicing ut sit cupidatat laborum laborum cupidatat proident
|
||||
|
||||
Dolore dolor sit sunt anim eu amet consectetur quis ea proident ex aliqua. Sunt laborum consectetur consectetur enim velit eiusmod labore commodo commodo laboris deserunt. Eiusmod enim do amet laborum commodo qui.
|
||||
|
||||
### 3.6 Reprehenderit culpa consectetur veniam minim cillum in nostrud
|
||||
|
||||
Lorem dolore sit aliqua tempor do voluptate ut esse. Minim velit ad velit commodo minim laborum. Qui qui reprehenderit non proident ullamco veniam aliquip.
|
||||
|
||||
## 4 Laboris aute consequat id eu et Lorem amet
|
||||
|
||||
Ad qui voluptate dolor veniam. Veniam mollit aute eiusmod eu labore incididunt sint proident. Non minim consequat anim sint. Aliquip non nisi nostrud proident. Eiusmod ut duis commodo sunt laboris irure eu. Laboris quis amet ad qui officia.
|
||||
|
||||
## 5 Esse eu consequat consequat aliqua fugiat nulla ad labore consectetur eu pariatur nisi aute
|
||||
|
||||
Duis proident ullamco fugiat aliqua sunt anim ea do irure est amet quis nulla cillum. Commodo voluptate dolor culpa sint aliquip voluptate exercitation anim cillum ad eu in amet. Sint fugiat qui commodo quis ex eu commodo officia aliquip irure. Non dolore elit excepteur id laboris irure consequat magna consectetur. Qui proident deserunt culpa tempor sit aute velit proident cillum ea.
|
||||
|
||||
## 6 Aliquip sunt laborum excepteur cupidatat officia ad tempor veniam esse amet ea commodo sunt
|
||||
|
||||
Ex minim pariatur est nisi exercitation exercitation reprehenderit id aliqua deserunt est. Laborum ullamco do ipsum minim ipsum aliquip voluptate voluptate aliqua. Magna proident velit veniam et minim commodo officia officia mollit nisi. Excepteur occaecat deserunt irure adipisicing minim adipisicing cupidatat non anim exercitation ex. Amet quis sunt sint veniam non id nisi ipsum mollit voluptate quis tempor tempor.
|
98
test/_posts/2012-01-03-layout-table-of-contents-post.md
Normal file
98
test/_posts/2012-01-03-layout-table-of-contents-post.md
Normal file
|
@ -0,0 +1,98 @@
|
|||
---
|
||||
title: "Layout: Post with Table of Contents"
|
||||
header:
|
||||
image: assets/images/unsplash-image-9.jpg
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
tags:
|
||||
- table of contents
|
||||
toc: true
|
||||
toc_label: "Unique Title"
|
||||
toc_icon: "heart"
|
||||
---
|
||||
|
||||
Enable table of contents on post or page by adding `toc: true` to its YAML Front Matter. The title and icon can also be changed with:
|
||||
|
||||
```yaml
|
||||
---
|
||||
toc: true
|
||||
toc_label: "Unique Title"
|
||||
toc_icon: "heart" # corresponding Font Awesome icon name (without fa prefix)
|
||||
---
|
||||
```
|
||||
|
||||
## HTML Elements
|
||||
|
||||
Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs.
|
||||
|
||||
## Body text
|
||||
|
||||
Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam.
|
||||
|
||||

|
||||
{: .image-right}
|
||||
|
||||
*This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That’s a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.
|
||||
|
||||
HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus.
|
||||
|
||||
### Blockquotes
|
||||
|
||||
> Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam.
|
||||
|
||||
## List Types
|
||||
|
||||
### Ordered Lists
|
||||
|
||||
1. Item one
|
||||
1. sub item one
|
||||
2. sub item two
|
||||
3. sub item three
|
||||
2. Item two
|
||||
|
||||
### Unordered Lists
|
||||
|
||||
* Item one
|
||||
* Item two
|
||||
* Item three
|
||||
|
||||
## Tables
|
||||
|
||||
| Header1 | Header2 | Header3 |
|
||||
|:--------|:-------:|--------:|
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|----
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|=====
|
||||
| Foot1 | Foot2 | Foot3
|
||||
{: rules="groups"}
|
||||
|
||||
## Code Snippets
|
||||
|
||||
```css
|
||||
#container {
|
||||
float: left;
|
||||
margin: 0 -240px 0 0;
|
||||
width: 100%;
|
||||
}
|
||||
```
|
||||
|
||||
## Buttons
|
||||
|
||||
Make any link standout more when applying the `.btn` class.
|
||||
|
||||
```html
|
||||
<a href="#" class="btn btn--success">Success Button</a>
|
||||
```
|
||||
|
||||
<div markdown="0"><a href="#" class="btn">Primary Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--success">Success Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--warning">Warning Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--danger">Danger Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--info">Info Button</a></div>
|
||||
|
||||
## Notices
|
||||
|
||||
**Watch out!** You can also add notices by appending `{: .notice}` to a paragraph.
|
||||
{: .notice}
|
93
test/_posts/2012-01-03-layout-table-of-contents-sticky.md
Normal file
93
test/_posts/2012-01-03-layout-table-of-contents-sticky.md
Normal file
|
@ -0,0 +1,93 @@
|
|||
---
|
||||
title: "Layout: Post with Sticky Table of Contents"
|
||||
tags:
|
||||
- table of contents
|
||||
toc: true
|
||||
toc_sticky: true
|
||||
---
|
||||
|
||||
"Stick" table of contents to the top of a page by adding `toc_sticky: true` to its YAML Front Matter.
|
||||
|
||||
```yaml
|
||||
---
|
||||
toc: true
|
||||
toc_sticky: true
|
||||
---
|
||||
```
|
||||
|
||||
## HTML Elements
|
||||
|
||||
Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs.
|
||||
|
||||
## Body text
|
||||
|
||||
Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam.
|
||||
|
||||

|
||||
{: .image-right}
|
||||
|
||||
*This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That’s a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.
|
||||
|
||||
HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus.
|
||||
|
||||
### Blockquotes
|
||||
|
||||
> Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam.
|
||||
|
||||
## List Types
|
||||
|
||||
### Ordered Lists
|
||||
|
||||
1. Item one
|
||||
1. sub item one
|
||||
2. sub item two
|
||||
3. sub item three
|
||||
2. Item two
|
||||
|
||||
### Unordered Lists
|
||||
|
||||
* Item one
|
||||
* Item two
|
||||
* Item three
|
||||
|
||||
## Tables
|
||||
|
||||
| Header1 | Header2 | Header3 |
|
||||
|:--------|:-------:|--------:|
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|----
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|=====
|
||||
| Foot1 | Foot2 | Foot3
|
||||
{: rules="groups"}
|
||||
|
||||
## Code Snippets
|
||||
|
||||
```css
|
||||
#container {
|
||||
float: left;
|
||||
margin: 0 -240px 0 0;
|
||||
width: 100%;
|
||||
}
|
||||
```
|
||||
|
||||
## Buttons
|
||||
|
||||
Make any link standout more when applying the `.btn` class.
|
||||
|
||||
```html
|
||||
<a href="#" class="btn btn--success">Success Button</a>
|
||||
```
|
||||
|
||||
<div markdown="0"><a href="#" class="btn">Primary Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--success">Success Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--warning">Warning Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--danger">Danger Button</a></div>
|
||||
<div markdown="0"><a href="#" class="btn btn--info">Info Button</a></div>
|
||||
|
||||
## Notices
|
||||
|
||||
**Watch out!** You can also add notices by appending `{: .notice}` to a paragraph.
|
||||
{: .notice}
|
14
test/_posts/2012-03-14-layout-code-excerpt-generated.md
Normal file
14
test/_posts/2012-03-14-layout-code-excerpt-generated.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Layout: Code Excerpt (Generated)"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- content
|
||||
- excerpt
|
||||
- layout
|
||||
---
|
||||
|
||||
This is the post content with inline code, (e.g. `<span style="color: red;">red</span>`. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content.
|
||||
|
||||
Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems.
|
15
test/_posts/2012-03-14-layout-excerpt-defined.md
Normal file
15
test/_posts/2012-03-14-layout-excerpt-defined.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
title: "Layout: Excerpt (Defined)"
|
||||
excerpt: "This is a user-defined post excerpt. It should be displayed in place of the post content in archive-index pages."
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- content
|
||||
- excerpt
|
||||
- layout
|
||||
---
|
||||
|
||||
This is the post content. It should be displayed in place of the user-defined excerpt in archive-index pages.
|
||||
|
||||
This paragraph should be absent from an archive-index page where `post.excerpt` is shown.
|
17
test/_posts/2012-03-14-layout-excerpt-generated.md
Normal file
17
test/_posts/2012-03-14-layout-excerpt-generated.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: "Layout: Excerpt (Generated)"
|
||||
excerpt_separator: "<!--more-->"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- content
|
||||
- excerpt
|
||||
- layout
|
||||
---
|
||||
|
||||
This is the post content. Archive-index pages should display an auto-generated excerpt of this content.
|
||||
|
||||
<!--more-->
|
||||
|
||||
Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems.
|
50
test/_posts/2012-03-15-layout-author-override.md
Normal file
50
test/_posts/2012-03-15-layout-author-override.md
Normal file
|
@ -0,0 +1,50 @@
|
|||
---
|
||||
title: "Layout: Author Override"
|
||||
author: Billy Rick
|
||||
excerpt: "A post to test author overrides using a data file."
|
||||
---
|
||||
|
||||
Sites that may have content authored from various individuals can be accommodated by using [data files](https://jekyllrb.com/docs/datafiles/).
|
||||
|
||||
To attribute an author to a post or page that is different from the site author specified in `_config.yml`:
|
||||
|
||||
**Step 1.** Create `_data/authors.yml` and add authors using the following format. Anything variables found under `author` in `_config.yml` can be used (e.g. `name`, `bio`, `avatar`, author `links`, etc.).
|
||||
|
||||
```yaml
|
||||
# /_data/authors.yml
|
||||
|
||||
Billy Rick:
|
||||
name : "Billy Rick"
|
||||
bio : "What do you want, jewels? I am a very extravagant man."
|
||||
avatar : "/assets/images/bio-photo-2.jpg"
|
||||
links:
|
||||
- label: "Email"
|
||||
icon: "fas fa-fw fa-envelope-square"
|
||||
url: "mailto:billyrick@rick.com"
|
||||
- label: "Website"
|
||||
icon: "fas fa-fw fa-link"
|
||||
url: "https://thewhip.com"
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/extravagantman"
|
||||
|
||||
Cornelius Fiddlebone:
|
||||
name : "Cornelius Fiddlebone"
|
||||
bio : "I ordered what?"
|
||||
avatar : "/assets/images/bio-photo.jpg"
|
||||
links:
|
||||
- label: "Email"
|
||||
icon: "fas fa-fw fa-envelope-square"
|
||||
url: "mailto:cornelius@thewhip.com"
|
||||
- label: "Twitter"
|
||||
icon: "fab fa-fw fa-twitter-square"
|
||||
url: "https://twitter.com/rhymeswithsackit"
|
||||
```
|
||||
|
||||
**Step 2.** Assign one of the authors in `authors.yml` to a post or page you wish to override the `site.author` with.
|
||||
|
||||
Example: To assign `Billy Rick` as an author for a post the following YAML Front Matter would be applied:
|
||||
|
||||
```yaml
|
||||
author: Billy Rick
|
||||
```
|
9
test/_posts/2012-03-15-layout-author-sidebar-disabled.md
Normal file
9
test/_posts/2012-03-15-layout-author-sidebar-disabled.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: "Layout: Author Sidebar Disabled"
|
||||
excerpt: "A post to test disabling author sidebar."
|
||||
author_profile: false
|
||||
---
|
||||
|
||||
This post has the author sidebar disabled.
|
||||
|
||||
To disable add `author_profile: false` to YAML Front Matter.
|
17
test/_posts/2012-03-15-layout-header-image-external.md
Normal file
17
test/_posts/2012-03-15-layout-header-image-external.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: "Layout: Header Image (External URL)"
|
||||
header:
|
||||
image: https://farm5.staticflickr.com/4140/4939863887_84705982fd_b.jpg
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- featured image
|
||||
- image
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display a **header image**, if the theme supports it.
|
||||
|
||||
Featured image is an external asset and should load.
|
20
test/_posts/2012-03-15-layout-header-image-horizontal.md
Normal file
20
test/_posts/2012-03-15-layout-header-image-horizontal.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
title: "Layout: Header Image (Horizontal)"
|
||||
header:
|
||||
image: /assets/images/unsplash-image-1.jpg
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- featured image
|
||||
- image
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display a **header image**, if the theme supports it.
|
||||
|
||||
Non-square images can provide some unique styling issues.
|
||||
|
||||
This post tests a horizontal header image.
|
|
@ -0,0 +1,49 @@
|
|||
---
|
||||
title: "Layout: Header Image and Text Readability"
|
||||
header:
|
||||
image: /assets/images/unsplash-image-4.jpg
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
tags:
|
||||
- sample post
|
||||
- readability
|
||||
- test
|
||||
---
|
||||
|
||||
This is a sample post with a large feature image[^1] up top and tons of text. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag.
|
||||
|
||||
Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. *Ea fashion axe [Marfa cillum aliquip](#). Retro Bushwick keytar cliche.* Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies.
|
||||
|
||||
## Cupidatat 90's lo-fi authentic try-hard
|
||||
|
||||
In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. **[Terry Richardson](#) shabby chic +1**, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's.
|
||||
|
||||
* Sartorial hoodie
|
||||
* Labore viral forage
|
||||
* Tote bag selvage
|
||||
* DIY exercitation et id ugh tumblr church-key
|
||||
|
||||
Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr.
|
||||
|
||||
Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis.
|
||||
|
||||
## Forage occaecat cardigan qui
|
||||
|
||||
Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole.
|
||||
|
||||
> Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache.
|
||||
|
||||
Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard.
|
||||
|
||||
## Hoodie Duis
|
||||
|
||||
Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio.
|
||||
|
||||
### Thundercats Ho!
|
||||
|
||||
Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress.
|
||||
|
||||
Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic.
|
||||
|
||||
Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.
|
||||
|
||||
[^1]: Texture image courtesty of [Lovetextures](http://www.lovetextures.com/)
|
20
test/_posts/2012-03-15-layout-header-image-vertical.md
Normal file
20
test/_posts/2012-03-15-layout-header-image-vertical.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
title: "Layout: Header Image (Vertical)"
|
||||
header:
|
||||
image: /assets/images/unsplash-image-6.jpg
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- featured image
|
||||
- image
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display a **header image**, if the theme supports it.
|
||||
|
||||
Non-square images can provide some unique styling issues.
|
||||
|
||||
This post tests a vertical header image.
|
18
test/_posts/2012-03-15-layout-header-overlay-color.md
Normal file
18
test/_posts/2012-03-15-layout-header-overlay-color.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: "Layout: Header Overlay with Background Fill"
|
||||
header:
|
||||
overlay_color: "#333"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- image
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display a **header with a solid background color**, if the theme supports it.
|
||||
|
||||
Non-square images can provide some unique styling issues.
|
||||
|
||||
This post tests overlay headers.
|
57
test/_posts/2012-03-15-layout-header-overlay-image.md
Normal file
57
test/_posts/2012-03-15-layout-header-overlay-image.md
Normal file
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
title: "Layout: Header Image Overlay"
|
||||
header:
|
||||
overlay_image: /assets/images/unsplash-image-1.jpg
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
actions:
|
||||
- label: "Call to action 1"
|
||||
url: "https://github.com"
|
||||
- label: "Call to action 2"
|
||||
url: "https://mademistakes.com"
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- edge case
|
||||
- image
|
||||
- layout
|
||||
last_modified_at: 2016-05-02T11:39:01-04:00
|
||||
---
|
||||
|
||||
This post should display a **header with an overlay image**, if the theme supports it.
|
||||
|
||||
Non-square images can provide some unique styling issues.
|
||||
|
||||
This post tests overlay header images.
|
||||
|
||||
## Overlay filter
|
||||
|
||||
You can use it by specifying the opacity (between 0 and 1) of a black overlay like so:
|
||||
|
||||

|
||||
|
||||
```yaml
|
||||
excerpt: "This post should [...]"
|
||||
header:
|
||||
overlay_image: /assets/images/unsplash-image-1.jpg
|
||||
overlay_filter: 0.5 # same as adding an opacity of 0.5 to a black background
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
actions:
|
||||
- label: "More Info"
|
||||
url: "https://unsplash.com"
|
||||
```
|
||||
|
||||
Or if you want to do more fancy things, go full rgba:
|
||||
|
||||

|
||||
|
||||
```yaml
|
||||
excerpt: "This post should [...]"
|
||||
header:
|
||||
overlay_image: /assets/images/unsplash-image-1.jpg
|
||||
overlay_filter: rgba(255, 0, 0, 0.5)
|
||||
caption: "Photo credit: [**Unsplash**](https://unsplash.com)"
|
||||
actions:
|
||||
- label: "More Info"
|
||||
url: "https://unsplash.com"
|
||||
```
|
19
test/_posts/2012-03-15-layout-more-tag.md
Normal file
19
test/_posts/2012-03-15-layout-more-tag.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: "Layout: More Tag"
|
||||
excerpt_separator: <!--more-->
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- content
|
||||
- read more
|
||||
- layout
|
||||
---
|
||||
|
||||
This content is before the [excerpt separator tag](http://jekyllrb.com/docs/posts/#post-excerpts).
|
||||
|
||||
Additional content before the more tag.
|
||||
|
||||
<!--more-->
|
||||
|
||||
And this content is after the more tag.
|
27
test/_posts/2012-03-15-layout-sidebar-custom.md
Normal file
27
test/_posts/2012-03-15-layout-sidebar-custom.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: "Layout: Sidebar Custom"
|
||||
excerpt: "A post with custom sidebar content."
|
||||
author_profile: false
|
||||
sidebar:
|
||||
- title: "Title"
|
||||
image: http://placehold.it/350x250
|
||||
image_alt: "image"
|
||||
text: "Some text here."
|
||||
nav: sidebar-sample
|
||||
- title: Another sidebar nav
|
||||
nav: sidebar-sample
|
||||
---
|
||||
|
||||
This post has a custom sidebar set in the post's YAML Front Matter.
|
||||
|
||||
An example of how that YAML could look is:
|
||||
|
||||
```yaml
|
||||
sidebar:
|
||||
- title: "Title"
|
||||
image: http://placehold.it/350x250
|
||||
image_alt: "image"
|
||||
text: "Some text here."
|
||||
- title: "Another Title"
|
||||
text: "More text here."
|
||||
```
|
62
test/_posts/2012-03-15-layout-sidebar-nav-list.md
Normal file
62
test/_posts/2012-03-15-layout-sidebar-nav-list.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
---
|
||||
title: "Layout: Sidebar with Navigation List"
|
||||
excerpt: "A post with a sidebar navigation list."
|
||||
author_profile: false
|
||||
sidebar:
|
||||
title: "Sample Title"
|
||||
nav: sidebar-sample
|
||||
---
|
||||
|
||||
This post has a custom navigation list set in the post's YAML Front Matter.
|
||||
|
||||
```yaml
|
||||
sidebar:
|
||||
title: "Sample Title"
|
||||
nav: sidebar-sample
|
||||
```
|
||||
|
||||
Along with navigation elements set in `_data/navigation.yml`.
|
||||
|
||||
```yaml
|
||||
sidebar-sample:
|
||||
- title: "Parent Page A"
|
||||
children:
|
||||
- title: "Child Page A1"
|
||||
url: /
|
||||
- title: "Child Page A2"
|
||||
url: /
|
||||
- title: "Child Page A3"
|
||||
url: /
|
||||
- title: "Child Page A4"
|
||||
url: /
|
||||
- title: "Parent Page B"
|
||||
children:
|
||||
- title: "Child Page B1"
|
||||
url: /
|
||||
- title: "Child Page B2"
|
||||
url: /
|
||||
- title: "Child Page B3"
|
||||
url: /
|
||||
- title: "Child Page B4"
|
||||
url: /
|
||||
- title: "Child Page B5"
|
||||
url: /
|
||||
- title: "Parent Page C"
|
||||
children:
|
||||
- title: "Child Page C1"
|
||||
url: /
|
||||
- title: "Child Page C2"
|
||||
url: /
|
||||
- title: "Child Page C3"
|
||||
url: /
|
||||
- title: "Child Page C4"
|
||||
url: /
|
||||
- title: "Child Page C5"
|
||||
url: /
|
||||
- title: "Parent Page D"
|
||||
children:
|
||||
- title: "Child Page D1"
|
||||
url: /
|
||||
- title: "Child Page D2"
|
||||
url: /
|
||||
```
|
52
test/_posts/2012-05-22-markup-text-readability-wide-page.md
Normal file
52
test/_posts/2012-05-22-markup-text-readability-wide-page.md
Normal file
|
@ -0,0 +1,52 @@
|
|||
---
|
||||
title: "Wide Single Layout Page"
|
||||
classes: wide
|
||||
excerpt: "A page with `classes: wide` set to expand the main content's width."
|
||||
tags:
|
||||
- sample post
|
||||
- readability
|
||||
- test
|
||||
---
|
||||
|
||||
When using `layout: single` add the following front matter to a page or post to widen the main content:
|
||||
|
||||
```yaml
|
||||
classes: wide
|
||||
```
|
||||
|
||||
Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag.
|
||||
|
||||
Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies.
|
||||
|
||||
## Cupidatat 90's lo-fi authentic try-hard
|
||||
|
||||
In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's.
|
||||
|
||||
* Sartorial hoodie
|
||||
* Labore viral forage
|
||||
* Tote bag selvage
|
||||
* DIY exercitation et id ugh tumblr church-key
|
||||
|
||||
Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr.
|
||||
|
||||
Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis.
|
||||
|
||||
## Forage occaecat cardigan qui
|
||||
|
||||
Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole.
|
||||
|
||||
> Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache.
|
||||
|
||||
Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard.
|
||||
|
||||
## Hoodie Duis
|
||||
|
||||
Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio.
|
||||
|
||||
### Thundercats Ho!
|
||||
|
||||
Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress.
|
||||
|
||||
Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic.
|
||||
|
||||
Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.
|
45
test/_posts/2012-05-22-markup-text-readability.md
Normal file
45
test/_posts/2012-05-22-markup-text-readability.md
Normal file
|
@ -0,0 +1,45 @@
|
|||
---
|
||||
title: "Markup: Text Readability Test"
|
||||
excerpt: "A bunch of text to test readability."
|
||||
tags:
|
||||
- sample post
|
||||
- readability
|
||||
- test
|
||||
---
|
||||
|
||||
Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag.
|
||||
|
||||
Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies.
|
||||
|
||||
## Cupidatat 90's lo-fi authentic try-hard
|
||||
|
||||
In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's.
|
||||
|
||||
* Sartorial hoodie
|
||||
* Labore viral forage
|
||||
* Tote bag selvage
|
||||
* DIY exercitation et id ugh tumblr church-key
|
||||
|
||||
Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr.
|
||||
|
||||
Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis.
|
||||
|
||||
## Forage occaecat cardigan qui
|
||||
|
||||
Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole.
|
||||
|
||||
> Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache.
|
||||
|
||||
Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard.
|
||||
|
||||
## Hoodie Duis
|
||||
|
||||
Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio.
|
||||
|
||||
### Thundercats Ho!
|
||||
|
||||
Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress.
|
||||
|
||||
Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic.
|
||||
|
||||
Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.
|
14
test/_posts/2013-01-05-markup-title-with-markup.md
Normal file
14
test/_posts/2013-01-05-markup-title-with-markup.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Markup: Title *with* **Markdown**"
|
||||
categories:
|
||||
- Markdown
|
||||
tags:
|
||||
- css
|
||||
- html
|
||||
- title
|
||||
---
|
||||
|
||||
Verify that:
|
||||
|
||||
* The post title renders the word "with" in *italics* and the word "Markdown" in **bold**.
|
||||
* The post title markup should be removed from the browser window / tab.
|
432
test/_posts/2013-01-05-markup-title-with-special-characters.md
Normal file
432
test/_posts/2013-01-05-markup-title-with-special-characters.md
Normal file
|
@ -0,0 +1,432 @@
|
|||
---
|
||||
title: "Markup: Title with Special --- Characters"
|
||||
categories:
|
||||
- Markup
|
||||
tags:
|
||||
- html
|
||||
- markup
|
||||
- post
|
||||
- title
|
||||
---
|
||||
|
||||
Putting special characters in the title should have no adverse effect on the layout or functionality.
|
||||
|
||||
Special characters in the post title have been known to cause issues with JavaScript and XML when not properly encoded and escaped.
|
||||
|
||||
## Latin Character Tests
|
||||
|
||||
This is a test to see if the fonts used in this theme support basic Latin characters.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
!
|
||||
</td>
|
||||
|
||||
<td>
|
||||
“
|
||||
</td>
|
||||
|
||||
<td>
|
||||
#
|
||||
</td>
|
||||
|
||||
<td>
|
||||
$
|
||||
</td>
|
||||
|
||||
<td>
|
||||
%
|
||||
</td>
|
||||
|
||||
<td>
|
||||
&
|
||||
</td>
|
||||
|
||||
<td>
|
||||
‘
|
||||
</td>
|
||||
|
||||
<td>
|
||||
(
|
||||
</td>
|
||||
|
||||
<td>
|
||||
)
|
||||
</td>
|
||||
|
||||
<td>
|
||||
*
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
+
|
||||
</td>
|
||||
|
||||
<td>
|
||||
,
|
||||
</td>
|
||||
|
||||
<td>
|
||||
–
|
||||
</td>
|
||||
|
||||
<td>
|
||||
.
|
||||
</td>
|
||||
|
||||
<td>
|
||||
/
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
1
|
||||
</td>
|
||||
|
||||
<td>
|
||||
2
|
||||
</td>
|
||||
|
||||
<td>
|
||||
3
|
||||
</td>
|
||||
|
||||
<td>
|
||||
4
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
5
|
||||
</td>
|
||||
|
||||
<td>
|
||||
6
|
||||
</td>
|
||||
|
||||
<td>
|
||||
7
|
||||
</td>
|
||||
|
||||
<td>
|
||||
8
|
||||
</td>
|
||||
|
||||
<td>
|
||||
9
|
||||
</td>
|
||||
|
||||
<td>
|
||||
:
|
||||
</td>
|
||||
|
||||
<td>
|
||||
;
|
||||
</td>
|
||||
|
||||
<td>
|
||||
>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
=
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
?
|
||||
</td>
|
||||
|
||||
<td>
|
||||
@
|
||||
</td>
|
||||
|
||||
<td>
|
||||
A
|
||||
</td>
|
||||
|
||||
<td>
|
||||
B
|
||||
</td>
|
||||
|
||||
<td>
|
||||
C
|
||||
</td>
|
||||
|
||||
<td>
|
||||
D
|
||||
</td>
|
||||
|
||||
<td>
|
||||
E
|
||||
</td>
|
||||
|
||||
<td>
|
||||
F
|
||||
</td>
|
||||
|
||||
<td>
|
||||
G
|
||||
</td>
|
||||
|
||||
<td>
|
||||
H
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
I
|
||||
</td>
|
||||
|
||||
<td>
|
||||
J
|
||||
</td>
|
||||
|
||||
<td>
|
||||
K
|
||||
</td>
|
||||
|
||||
<td>
|
||||
L
|
||||
</td>
|
||||
|
||||
<td>
|
||||
M
|
||||
</td>
|
||||
|
||||
<td>
|
||||
N
|
||||
</td>
|
||||
|
||||
<td>
|
||||
O
|
||||
</td>
|
||||
|
||||
<td>
|
||||
P
|
||||
</td>
|
||||
|
||||
<td>
|
||||
Q
|
||||
</td>
|
||||
|
||||
<td>
|
||||
R
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
S
|
||||
</td>
|
||||
|
||||
<td>
|
||||
T
|
||||
</td>
|
||||
|
||||
<td>
|
||||
U
|
||||
</td>
|
||||
|
||||
<td>
|
||||
V
|
||||
</td>
|
||||
|
||||
<td>
|
||||
W
|
||||
</td>
|
||||
|
||||
<td>
|
||||
X
|
||||
</td>
|
||||
|
||||
<td>
|
||||
Y
|
||||
</td>
|
||||
|
||||
<td>
|
||||
Z
|
||||
</td>
|
||||
|
||||
<td>
|
||||
[
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
]
|
||||
</td>
|
||||
|
||||
<td>
|
||||
^
|
||||
</td>
|
||||
|
||||
<td>
|
||||
_
|
||||
</td>
|
||||
|
||||
<td>
|
||||
`
|
||||
</td>
|
||||
|
||||
<td>
|
||||
a
|
||||
</td>
|
||||
|
||||
<td>
|
||||
b
|
||||
</td>
|
||||
|
||||
<td>
|
||||
c
|
||||
</td>
|
||||
|
||||
<td>
|
||||
d
|
||||
</td>
|
||||
|
||||
<td>
|
||||
e
|
||||
</td>
|
||||
|
||||
<td>
|
||||
f
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
g
|
||||
</td>
|
||||
|
||||
<td>
|
||||
h
|
||||
</td>
|
||||
|
||||
<td>
|
||||
i
|
||||
</td>
|
||||
|
||||
<td>
|
||||
j
|
||||
</td>
|
||||
|
||||
<td>
|
||||
k
|
||||
</td>
|
||||
|
||||
<td>
|
||||
l
|
||||
</td>
|
||||
|
||||
<td>
|
||||
m
|
||||
</td>
|
||||
|
||||
<td>
|
||||
n
|
||||
</td>
|
||||
|
||||
<td>
|
||||
o
|
||||
</td>
|
||||
|
||||
<td>
|
||||
p
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
q
|
||||
</td>
|
||||
|
||||
<td>
|
||||
r
|
||||
</td>
|
||||
|
||||
<td>
|
||||
s
|
||||
</td>
|
||||
|
||||
<td>
|
||||
t
|
||||
</td>
|
||||
|
||||
<td>
|
||||
u
|
||||
</td>
|
||||
|
||||
<td>
|
||||
v
|
||||
</td>
|
||||
|
||||
<td>
|
||||
w
|
||||
</td>
|
||||
|
||||
<td>
|
||||
x
|
||||
</td>
|
||||
|
||||
<td>
|
||||
y
|
||||
</td>
|
||||
|
||||
<td>
|
||||
z
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
{
|
||||
</td>
|
||||
|
||||
<td>
|
||||
|
|
||||
</td>
|
||||
|
||||
<td>
|
||||
}
|
||||
</td>
|
||||
|
||||
<td>
|
||||
~
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
34
test/_posts/2013-01-09-markup-text-alignment.md
Normal file
34
test/_posts/2013-01-09-markup-text-alignment.md
Normal file
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
title: "Markup: Text Alignment"
|
||||
categories:
|
||||
- Markup
|
||||
tags:
|
||||
- alignment
|
||||
- content
|
||||
- css
|
||||
- markup
|
||||
---
|
||||
|
||||
### Default
|
||||
|
||||
This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.
|
||||
|
||||
### Left Align
|
||||
|
||||
This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.
|
||||
{: style="text-align: left;"}
|
||||
|
||||
### Center Align
|
||||
|
||||
This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.
|
||||
{: style="text-align: center;"}
|
||||
|
||||
### Right Align
|
||||
|
||||
This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.
|
||||
{: style="text-align: right;"}
|
||||
|
||||
### Justify Align
|
||||
|
||||
This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.
|
||||
{: style="text-align: justify;"}
|
72
test/_posts/2013-01-10-markup-image-alignment.md
Normal file
72
test/_posts/2013-01-10-markup-image-alignment.md
Normal file
|
@ -0,0 +1,72 @@
|
|||
---
|
||||
title: "Markup: Image Alignment"
|
||||
categories:
|
||||
- Markup
|
||||
tags:
|
||||
- alignment
|
||||
- captions
|
||||
- content
|
||||
- css
|
||||
- image
|
||||
- markup
|
||||
---
|
||||
|
||||
Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started.
|
||||
|
||||
{: .align-center}
|
||||
|
||||
The image above happens to be **centered**.
|
||||
|
||||
{: .align-left} The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**.
|
||||
|
||||
As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thing. Mission accomplished!
|
||||
|
||||
And now for a **massively large image**. It also has **no alignment**.
|
||||
|
||||

|
||||
|
||||
The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.
|
||||
|
||||
{: .align-right}
|
||||
|
||||
And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
|
||||
|
||||
In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah --- Just like that. It never felt so good to be right.
|
||||
|
||||
And just when you thought we were done, we're going to do them all over again with captions!
|
||||
|
||||
<figure class="align-center">
|
||||
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-580x300.jpg" alt="">
|
||||
<figcaption>Look at 580 x 300 getting some love.</figcaption>
|
||||
</figure>
|
||||
|
||||
The figure above happens to be **centered**. The caption also has a link in it, just to see if it does anything funky.
|
||||
|
||||
<figure style="width: 150px" class="align-left">
|
||||
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-150x150.jpg" alt="">
|
||||
<figcaption>Itty-bitty caption.</figcaption>
|
||||
</figure>
|
||||
|
||||
The rest of this paragraph is filler for the sake of seeing the text wrap around the 150×150 image, which is **left aligned**.
|
||||
|
||||
As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thing. Mission accomplished!
|
||||
|
||||
And now for a **massively large image**. It also has **no alignment**.
|
||||
|
||||
<figure style="width: 1200px">
|
||||
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-1200x4002.jpg" alt="">
|
||||
<figcaption>Massive image comment for your eyeballs.</figcaption>
|
||||
</figure>
|
||||
|
||||
The figure element above has an inline style of `width: 1200px` set which should break it outside of the normal content flow.
|
||||
|
||||
<figure style="width: 300px" class="align-right">
|
||||
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/image-alignment-300x200.jpg" alt="">
|
||||
<figcaption>Feels good to be right all the time.</figcaption>
|
||||
</figure>
|
||||
|
||||
And now we're going to shift things to the **right align**. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there --- Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
|
||||
|
||||
In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah --- Just like that. It never felt so good to be right.
|
||||
|
||||
And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!
|
249
test/_posts/2013-01-11-markup-html-tags-and-formatting.md
Normal file
249
test/_posts/2013-01-11-markup-html-tags-and-formatting.md
Normal file
|
@ -0,0 +1,249 @@
|
|||
---
|
||||
title: "Markup: HTML Tags and Formatting"
|
||||
header:
|
||||
teaser: "assets/images/markup-syntax-highlighting-teaser.jpg"
|
||||
categories:
|
||||
- Markup
|
||||
tags:
|
||||
- content
|
||||
- css
|
||||
- formatting
|
||||
- html
|
||||
- markup
|
||||
toc: true
|
||||
---
|
||||
|
||||
A variety of common markup showing how the theme styles them.
|
||||
|
||||
## Header two
|
||||
|
||||
### Header three
|
||||
|
||||
#### Header four
|
||||
|
||||
##### Header five
|
||||
|
||||
###### Header six
|
||||
|
||||
## Blockquotes
|
||||
|
||||
Single line blockquote:
|
||||
|
||||
> Stay hungry. Stay foolish.
|
||||
|
||||
Multi line blockquote with a cite reference:
|
||||
|
||||
> People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things.
|
||||
|
||||
<cite>Steve Jobs</cite> --- Apple Worldwide Developers' Conference, 1997
|
||||
{: .small}
|
||||
|
||||
## Tables
|
||||
|
||||
| Employee | Salary | |
|
||||
| -------- | ------ | ------------------------------------------------------------ |
|
||||
| [John Doe](#) | $1 | Because that's all Steve Jobs needed for a salary. |
|
||||
| [Jane Doe](#) | $100K | For all the blogging she does. |
|
||||
| [Fred Bloggs](#) | $100M | Pictures are worth a thousand words, right? So Jane × 1,000. |
|
||||
| [Jane Bloggs](#) | $100B | With hair like that?! Enough said. |
|
||||
|
||||
| Header1 | Header2 | Header3 |
|
||||
|:--------|:-------:|--------:|
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|-----------------------------|
|
||||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|=============================|
|
||||
| Foot1 | Foot2 | Foot3 |
|
||||
|
||||
## Definition Lists
|
||||
|
||||
Definition List Title
|
||||
: Definition list division.
|
||||
|
||||
Startup
|
||||
: A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
|
||||
|
||||
#dowork
|
||||
: Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
|
||||
|
||||
Do It Live
|
||||
: I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one.
|
||||
|
||||
## Unordered Lists (Nested)
|
||||
|
||||
* List item one
|
||||
* List item one
|
||||
* List item one
|
||||
* List item two
|
||||
* List item three
|
||||
* List item four
|
||||
* List item two
|
||||
* List item three
|
||||
* List item four
|
||||
* List item two
|
||||
* List item three
|
||||
* List item four
|
||||
|
||||
## Ordered List (Nested)
|
||||
|
||||
1. List item one
|
||||
1. List item one
|
||||
1. List item one
|
||||
2. List item two
|
||||
3. List item three
|
||||
4. List item four
|
||||
2. List item two
|
||||
3. List item three
|
||||
4. List item four
|
||||
2. List item two
|
||||
3. List item three
|
||||
4. List item four
|
||||
|
||||
## Forms
|
||||
|
||||
<form>
|
||||
<fieldset>
|
||||
<legend>Personalia:</legend>
|
||||
Name: <input type="text" size="30"><br>
|
||||
Email: <input type="text" size="30"><br>
|
||||
Date of birth: <input type="text" size="10">
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
## Buttons
|
||||
|
||||
Make any link standout more when applying the `.btn` class.
|
||||
|
||||
```html
|
||||
<a href="#" class="btn--success">Success Button</a>
|
||||
```
|
||||
|
||||
[Default Button](#){: .btn}
|
||||
[Primary Button](#){: .btn .btn--primary}
|
||||
[Success Button](#){: .btn .btn--success}
|
||||
[Warning Button](#){: .btn .btn--warning}
|
||||
[Danger Button](#){: .btn .btn--danger}
|
||||
[Info Button](#){: .btn .btn--info}
|
||||
[Inverse Button](#){: .btn .btn--inverse}
|
||||
[Light Outline Button](#){: .btn .btn--light-outline}
|
||||
|
||||
```markdown
|
||||
[Default Button Text](#link){: .btn}
|
||||
[Primary Button Text](#link){: .btn .btn--primary}
|
||||
[Success Button Text](#link){: .btn .btn--success}
|
||||
[Warning Button Text](#link){: .btn .btn--warning}
|
||||
[Danger Button Text](#link){: .btn .btn--danger}
|
||||
[Info Button Text](#link){: .btn .btn--info}
|
||||
[Inverse Button](#link){: .btn .btn--inverse}
|
||||
[Light Outline Button](#link){: .btn .btn--light-outline}
|
||||
```
|
||||
|
||||
[X-Large Button](#){: .btn .btn--primary .btn--x-large}
|
||||
[Large Button](#){: .btn .btn--primary .btn--large}
|
||||
[Default Button](#){: .btn .btn--primary }
|
||||
[Small Button](#){: .btn .btn--primary .btn--small}
|
||||
|
||||
```markdown
|
||||
[X-Large Button](#link){: .btn .btn--primary .btn--x-large}
|
||||
[Large Button](#link){: .btn .btn--primary .btn--large}
|
||||
[Default Button](#link){: .btn .btn--primary }
|
||||
[Small Button](#link){: .btn .btn--primary .btn--small}
|
||||
```
|
||||
|
||||
## Notices
|
||||
|
||||
**Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice}` class.
|
||||
{: .notice}
|
||||
|
||||
**Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--primary}` class.
|
||||
{: .notice--primary}
|
||||
|
||||
**Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--info}` class.
|
||||
{: .notice--info}
|
||||
|
||||
**Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--warning}` class.
|
||||
{: .notice--warning}
|
||||
|
||||
**Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--success}` class.
|
||||
{: .notice--success}
|
||||
|
||||
**Watch out!** This paragraph of text has been [emphasized](#) with the `{: .notice--danger}` class.
|
||||
{: .notice--danger}
|
||||
|
||||
## HTML Tags
|
||||
|
||||
### Address Tag
|
||||
|
||||
<address>
|
||||
1 Infinite Loop<br /> Cupertino, CA 95014<br /> United States
|
||||
</address>
|
||||
|
||||
### Anchor Tag (aka. Link)
|
||||
|
||||
This is an example of a [link](http://apple.com "Apple").
|
||||
|
||||
### Abbreviation Tag
|
||||
|
||||
The abbreviation CSS stands for "Cascading Style Sheets".
|
||||
|
||||
*[CSS]: Cascading Style Sheets
|
||||
|
||||
### Cite Tag
|
||||
|
||||
"Code is poetry." ---<cite>Automattic</cite>
|
||||
|
||||
### Code Tag
|
||||
|
||||
You will learn later on in these tests that `word-wrap: break-word;` will be your best friend.
|
||||
|
||||
### Strike Tag
|
||||
|
||||
This tag will let you <strike>strikeout text</strike>.
|
||||
|
||||
### Emphasize Tag
|
||||
|
||||
The emphasize tag should _italicize_ text.
|
||||
|
||||
### Insert Tag
|
||||
|
||||
This tag should denote <ins>inserted</ins> text.
|
||||
|
||||
### Keyboard Tag
|
||||
|
||||
This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the `<code>` tag.
|
||||
|
||||
### Preformatted Tag
|
||||
|
||||
This tag styles large blocks of code.
|
||||
|
||||
<pre>
|
||||
.post-title {
|
||||
margin: 0 0 5px;
|
||||
font-weight: bold;
|
||||
font-size: 38px;
|
||||
line-height: 1.2;
|
||||
and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
|
||||
}
|
||||
</pre>
|
||||
|
||||
### Quote Tag
|
||||
|
||||
<q>Developers, developers, developers…</q> –Steve Ballmer
|
||||
|
||||
### Strong Tag
|
||||
|
||||
This tag shows **bold text**.
|
||||
|
||||
### Subscript Tag
|
||||
|
||||
Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
|
||||
|
||||
### Superscript Tag
|
||||
|
||||
Still sticking with science and Albert Einstein's E = MC<sup>2</sup>, which should lift the 2 up.
|
||||
|
||||
### Variable Tag
|
||||
|
||||
This allows you to denote <var>variables</var>.
|
65
test/_posts/2013-05-22-markup-more-images.md
Normal file
65
test/_posts/2013-05-22-markup-more-images.md
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: "Markup: Another Post with Images"
|
||||
excerpt: "Examples and code for displaying images in posts."
|
||||
header:
|
||||
teaser: "http://farm9.staticflickr.com/8426/7758832526_cc8f681e48_c.jpg"
|
||||
tags:
|
||||
- sample post
|
||||
- images
|
||||
- test
|
||||
---
|
||||
|
||||
Here are some examples of what a post with images might look like. If you want to display two or three images next to each other responsively use `figure` with the appropriate `class`. Each instance of `figure` is auto-numbered and displayed in the caption.
|
||||
|
||||
### Figures (for images or video)
|
||||
|
||||
#### One Up
|
||||
|
||||
<figure>
|
||||
<a href="http://farm9.staticflickr.com/8426/7758832526_cc8f681e48_b.jpg"><img src="http://farm9.staticflickr.com/8426/7758832526_cc8f681e48_c.jpg"></a>
|
||||
<figcaption><a href="http://www.flickr.com/photos/80901381@N04/7758832526/" title="Morning Fog Emerging From Trees by A Guy Taking Pictures, on Flickr">Morning Fog Emerging From Trees by A Guy Taking Pictures, on Flickr</a>.</figcaption>
|
||||
</figure>
|
||||
|
||||
Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies.
|
||||
|
||||
#### Two Up
|
||||
|
||||
Apply the `half` class like so to display two images side by side that share the same caption.
|
||||
|
||||
```html
|
||||
<figure class="half">
|
||||
<a href="/assets/images/image-filename-1-large.jpg"><img src="/assets/images/image-filename-1.jpg"></a>
|
||||
<a href="/assets/images/image-filename-2-large.jpg"><img src="/assets/images/image-filename-2.jpg"></a>
|
||||
<figcaption>Caption describing these two images.</figcaption>
|
||||
</figure>
|
||||
```
|
||||
|
||||
And you'll get something that looks like this:
|
||||
|
||||
<figure class="half">
|
||||
<a href="http://placehold.it/1200x600.JPG"><img src="http://placehold.it/600x300.jpg"></a>
|
||||
<a href="http://placehold.it/1200x600.jpeg"><img src="http://placehold.it/600x300.jpg"></a>
|
||||
<figcaption>Two images.</figcaption>
|
||||
</figure>
|
||||
|
||||
#### Three Up
|
||||
|
||||
Apply the `third` class like so to display three images side by side that share the same caption.
|
||||
|
||||
```html
|
||||
<figure class="third">
|
||||
<img src="/images/image-filename-1.jpg">
|
||||
<img src="/images/image-filename-2.jpg">
|
||||
<img src="/images/image-filename-3.jpg">
|
||||
<figcaption>Caption describing these three images.</figcaption>
|
||||
</figure>
|
||||
```
|
||||
|
||||
And you'll get something that looks like this:
|
||||
|
||||
<figure class="third">
|
||||
<img src="http://placehold.it/600x300.jpg">
|
||||
<img src="http://placehold.it/600x300.jpg">
|
||||
<img src="http://placehold.it/600x300.jpg">
|
||||
<figcaption>Three images.</figcaption>
|
||||
</figure>
|
127
test/_posts/2013-08-16-markup-syntax-highlighting.md
Normal file
127
test/_posts/2013-08-16-markup-syntax-highlighting.md
Normal file
|
@ -0,0 +1,127 @@
|
|||
---
|
||||
title: "Markup: Syntax Highlighting"
|
||||
excerpt: "Post displaying the various ways of highlighting code in Markdown."
|
||||
last_modified_at: 2018-01-03T09:45:06-05:00
|
||||
header:
|
||||
teaser: "assets/images/markup-syntax-highlighting-teaser.jpg"
|
||||
tags:
|
||||
- code
|
||||
- syntax highlighting
|
||||
toc: true
|
||||
---
|
||||
|
||||
Syntax highlighting is a feature that displays source code, in different colors and fonts according to the category of terms. This feature facilitates writing in a structured language such as a programming language or a markup language as both structures and syntax errors are visually distinct. Highlighting does not affect the meaning of the text itself; it is intended only for human readers.[^1]
|
||||
|
||||
[^1]: <http://en.wikipedia.org/wiki/Syntax_highlighting>
|
||||
|
||||
### GFM Code Blocks
|
||||
|
||||
GitHub Flavored Markdown [fenced code blocks](https://help.github.com/articles/creating-and-highlighting-code-blocks/) are supported. To modify styling and highlight colors edit `/_sass/syntax.scss`.
|
||||
|
||||
```css
|
||||
#container {
|
||||
float: left;
|
||||
margin: 0 -240px 0 0;
|
||||
width: 100%;
|
||||
}
|
||||
```
|
||||
|
||||
{% highlight scss %}
|
||||
.highlight {
|
||||
margin: 0;
|
||||
padding: 1em;
|
||||
font-family: $monospace;
|
||||
font-size: $type-size-7;
|
||||
line-height: 1.8;
|
||||
}
|
||||
{% endhighlight %}
|
||||
|
||||
```html
|
||||
{% raw %}<nav class="pagination" role="navigation">
|
||||
{% if page.previous %}
|
||||
<a href="{{ site.url }}{{ page.previous.url }}" class="btn" title="{{ page.previous.title }}">Previous article</a>
|
||||
{% endif %}
|
||||
{% if page.next %}
|
||||
<a href="{{ site.url }}{{ page.next.url }}" class="btn" title="{{ page.next.title }}">Next article</a>
|
||||
{% endif %}
|
||||
</nav><!-- /.pagination -->{% endraw %}
|
||||
```
|
||||
|
||||
```ruby
|
||||
module Jekyll
|
||||
class TagIndex < Page
|
||||
def initialize(site, base, dir, tag)
|
||||
@site = site
|
||||
@base = base
|
||||
@dir = dir
|
||||
@name = 'index.html'
|
||||
self.process(@name)
|
||||
self.read_yaml(File.join(base, '_layouts'), 'tag_index.html')
|
||||
self.data['tag'] = tag
|
||||
tag_title_prefix = site.config['tag_title_prefix'] || 'Tagged: '
|
||||
tag_title_suffix = site.config['tag_title_suffix'] || '–'
|
||||
self.data['title'] = "#{tag_title_prefix}#{tag}"
|
||||
self.data['description'] = "An archive of posts tagged #{tag}."
|
||||
end
|
||||
end
|
||||
end
|
||||
```
|
||||
|
||||
### Code Blocks in Lists
|
||||
|
||||
Indentation matters. Be sure the indent of the code block aligns with the first non-space character after the list item marker (e.g., `1.`). Usually this will mean indenting 3 spaces instead of 4.
|
||||
|
||||
1. Do step 1.
|
||||
2. Now do this:
|
||||
|
||||
```ruby
|
||||
def print_hi(name)
|
||||
puts "Hi, #{name}"
|
||||
end
|
||||
print_hi('Tom')
|
||||
#=> prints 'Hi, Tom' to STDOUT.
|
||||
```
|
||||
|
||||
3. Now you can do this.
|
||||
|
||||
### Jekyll Highlight Tag
|
||||
|
||||
An example of a code blocking using Jekyll's [`{% raw %}{% highlight %}{% endraw %}` tag](https://jekyllrb.com/docs/templates/#code-snippet-highlighting).
|
||||
|
||||
{% highlight javascript linenos %}
|
||||
// 'gulp html' -- does nothing
|
||||
// 'gulp html --prod' -- minifies and gzips HTML files for production
|
||||
gulp.task('html', () => {
|
||||
return gulp.src(paths.siteFolderName + paths.htmlPattern)
|
||||
.pipe(when(argv.prod, htmlmin({
|
||||
removeComments: true,
|
||||
collapseWhitespace: true,
|
||||
collapseBooleanAttributes: false,
|
||||
removeAttributeQuotes: false,
|
||||
removeRedundantAttributes: false,
|
||||
minifyJS: true,
|
||||
minifyCSS: true
|
||||
})))
|
||||
.pipe(when(argv.prod, size({title: 'optimized HTML'})))
|
||||
.pipe(when(argv.prod, gulp.dest(paths.siteFolderName)))
|
||||
.pipe(when(argv.prod, gzip({append: true})))
|
||||
.pipe(when(argv.prod, size({
|
||||
title: 'gzipped HTML',
|
||||
gzip: true
|
||||
})))
|
||||
.pipe(when(argv.prod, gulp.dest(paths.siteFolderName)))
|
||||
});
|
||||
{% endhighlight %}
|
||||
|
||||
{% highlight wl linenos %}
|
||||
Module[{},
|
||||
Sqrt[2]
|
||||
4
|
||||
]
|
||||
{% endhighlight %}
|
||||
|
||||
### GitHub Gist Embed
|
||||
|
||||
An example of a Gist embed below.
|
||||
|
||||
<script src="https://gist.github.com/mmistakes/77c68fbb07731a456805a7b473f47841.js"></script>
|
31
test/_posts/2016-02-24-welcome-to-jekyll.md
Normal file
31
test/_posts/2016-02-24-welcome-to-jekyll.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: "Welcome to Jekyll!"
|
||||
header:
|
||||
teaser: "https://farm5.staticflickr.com/4076/4940499208_b79b77fb0a_z.jpg"
|
||||
categories:
|
||||
- Jekyll
|
||||
tags:
|
||||
- update
|
||||
---
|
||||
|
||||
You'll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in [many different ways](https://jekyllrb.com/docs/usage/), but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
|
||||
|
||||
To add new posts, simply add a file in the `_posts`[^posts] directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
|
||||
|
||||
[^posts]: Footnote test.
|
||||
|
||||
Jekyll also offers powerful support for code snippets:
|
||||
|
||||
```ruby
|
||||
def print_hi(name)
|
||||
puts "Hi, #{name}"
|
||||
end
|
||||
print_hi('Tom')
|
||||
#=> prints 'Hi, Tom' to STDOUT.
|
||||
```
|
||||
|
||||
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
|
||||
|
||||
[jekyll-docs]: http://jekyllrb.com/docs/home
|
||||
[jekyll-gh]: https://github.com/jekyll/jekyll
|
||||
[jekyll-talk]: https://talk.jekyllrb.com/
|
60
test/_posts/2017-01-23-layout-header-video.md
Normal file
60
test/_posts/2017-01-23-layout-header-video.md
Normal file
|
@ -0,0 +1,60 @@
|
|||
---
|
||||
title: "Layout: Header Video"
|
||||
header:
|
||||
video:
|
||||
id: XsxDH4HcOWA
|
||||
provider: youtube
|
||||
categories:
|
||||
- Layout
|
||||
- Uncategorized
|
||||
tags:
|
||||
- video
|
||||
- layout
|
||||
---
|
||||
|
||||
This post should display a **header with a responsive video**, if the theme supports it.
|
||||
|
||||
## Settings
|
||||
|
||||
| Parameter | Required | Description |
|
||||
|---------- |--------- | ----------- |
|
||||
| `id` | **Required** | ID of the video |
|
||||
| `provider` | **Required** | Hosting provider of the video, either `youtube` or `vimeo` |
|
||||
|
||||
### YouTube
|
||||
|
||||
To embed the following YouTube video at url `https://www.youtube.com/watch?v=XsxDH4HcOWA` (long version) or `https://youtu.be/XsxDH4HcOWA` (short version) into a post or page's main content you'd use:
|
||||
|
||||
```liquid
|
||||
{% raw %}{% include video id="XsxDH4HcOWA" provider="youtube" %}{% endraw %}
|
||||
```
|
||||
|
||||
{% include video id="XsxDH4HcOWA" provider="youtube" %}
|
||||
|
||||
To embed it as a video header you'd use the following YAML Front Matter
|
||||
|
||||
```yaml
|
||||
header:
|
||||
video:
|
||||
id: XsxDH4HcOWA
|
||||
provider: youtube
|
||||
```
|
||||
|
||||
### Vimeo
|
||||
|
||||
To embed the following Vimeo video at url `https://vimeo.com/212731897` into a post or page's main content you'd use:
|
||||
|
||||
```liquid
|
||||
{% raw %}{% include video id="212731897" provider="vimeo" %}{% endraw %}
|
||||
```
|
||||
|
||||
{% include video id="212731897" provider="vimeo" %}
|
||||
|
||||
To embed it as a video header you'd use the following YAML Front Matter
|
||||
|
||||
```yaml
|
||||
header:
|
||||
video:
|
||||
id: 212731897
|
||||
provider: vimeo
|
||||
```
|
29
test/_posts/2017-11-28-post-exclude-search.md
Normal file
29
test/_posts/2017-11-28-post-exclude-search.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: "Exclude Post from Search Index"
|
||||
search: false
|
||||
categories:
|
||||
- Jekyll
|
||||
last_modified_at: 2018-02-19T08:05:34-05:00
|
||||
---
|
||||
|
||||
This post should not appear in the search index because it has the following YAML Front Matter:
|
||||
|
||||
```yaml
|
||||
search: false
|
||||
```
|
||||
|
||||
**Note:** `search: false` only works to exclude posts when using **Lunr** as a search provider.
|
||||
{: .notice--info}
|
||||
|
||||
To exclude files when using **Algolia** as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html).
|
||||
|
||||
```yaml
|
||||
algolia:
|
||||
# Exclude more files from indexing
|
||||
files_to_exclude:
|
||||
- index.html
|
||||
- index.md
|
||||
- excluded-file.html
|
||||
- _posts/2017-11-28-post-exclude-search.md
|
||||
- subdirectory/*.html
|
||||
```
|
31
test/_recipes/chocolate-chip-cookies.md
Normal file
31
test/_recipes/chocolate-chip-cookies.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
title: "Chocolate Chip Cookies"
|
||||
---
|
||||
|
||||
A chocolate chip cookie is a drop cookie that originated in the United States and features chocolate chips as its distinguishing ingredient.
|
||||
|
||||
The traditional recipe combines a dough composed of butter and both brown and white sugar with semi-sweet chocolate chips. Variations include recipes with other types of chocolate as well as additional ingredients such as nuts or oatmeal.
|
||||
|
||||
This recipe makes 4 dozen cookies.
|
||||
|
||||
## Ingredients
|
||||
|
||||
* 2 1/4 cups all-purpose flour
|
||||
* 1 teaspoon baking soda
|
||||
* 1/2 teaspoon salt
|
||||
* 1 cup butter, softened and cut to pieces
|
||||
* 1 cup sugar
|
||||
* 1 cup light brown sugar, packed
|
||||
* 2 teaspoons vanilla extract
|
||||
* 2 large eggs
|
||||
* 2 cups semi-sweet chocolate chips
|
||||
* 1/2 teaspoon nutmeg (optional)
|
||||
* 1 cup chopped pecans or walnuts (optional)
|
||||
|
||||
## Directions
|
||||
|
||||
1. Preheat the oven to 350 F.
|
||||
2. In a medium bowl, whisk flour with baking soda, nutmeg and salt.
|
||||
3. In a large bowl, beat butter with sugar and brown sugar until creamy and light. Add vanilla and eggs, one at a time, and mix until incorporated.
|
||||
4. Gradually add dry mixture into the butter-sugar wet blend, mixing with a spatula until combined. Add chocolate chips and nuts until just mixed.
|
||||
5. Drop tablespoon-sized clumps onto un-greased cookie sheets. Bake for 8-12 minutes, or until pale brown. Allow to cool on the pan for a minute or three, then transfer cookies to a wire rack to finish cooling.
|
23
test/_recipes/oatmeal-cookies.md
Normal file
23
test/_recipes/oatmeal-cookies.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
title: "Oatmeal Cookies"
|
||||
---
|
||||
|
||||
Oatmeal cookies are a proverbial favorite with both kids and adults. This crisp and chewy cookie is loaded with oats, dried fruit, and chopped nuts.
|
||||
|
||||
## Ingredients
|
||||
|
||||
* 1 cup butter, softened 1 cup white sugar
|
||||
* 1 cup packed brown sugar
|
||||
* 2 eggs
|
||||
* 1 teaspoon vanilla extract
|
||||
* 2 cups all-purpose flour
|
||||
* 1 teaspoon baking soda
|
||||
* 1 teaspoon salt
|
||||
* 1 1/2 teaspoons ground cinnamon
|
||||
* 3 cups quick cooking oats
|
||||
|
||||
## Directions
|
||||
|
||||
1. In a medium bowl, cream together butter, white sugar, and brown sugar. Beat in eggs one at a time, then stir in vanilla. Combine flour, baking soda, salt, and cinnamon; stir into the creamed mixture. Mix in oats. Cover, and chill dough for at least one hour.
|
||||
2. Preheat the oven to 375 degrees F (190 degrees C). Grease cookie sheets. Roll the dough into walnut sized balls, and place 2 inches apart on cookie sheets. Flatten each cookie with a large fork dipped in sugar.
|
||||
3. Bake for 8 to 10 minutes in preheated oven. Allow cookies to cool on baking sheet for 5 minutes before transferring to a wire rack to cool completely.
|
23
test/_recipes/peanut-butter-cookies.md
Normal file
23
test/_recipes/peanut-butter-cookies.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
title: "Peanut Butter Cookies"
|
||||
---
|
||||
|
||||
A peanut butter cookie is a type of cookie that is distinguished for having peanut butter as a principal ingredient. The cookie generally originated in the United States, its development dating back to the 1910s.
|
||||
|
||||
## Ingredients
|
||||
|
||||
* 1 cup unsalted butter
|
||||
* 1 cup crunchy peanut butter
|
||||
* 1 cup white sugar
|
||||
* 1 cup packed brown sugar
|
||||
* 2 eggs 2
|
||||
* 1/2 cups all-purpose flour
|
||||
* 1 teaspoon baking powder
|
||||
* 1/2 teaspoon salt
|
||||
* 1 1/2 teaspoons baking soda
|
||||
|
||||
## Directions
|
||||
|
||||
1. Cream butter, peanut butter, and sugars together in a bowl; beat in eggs.
|
||||
2. In a separate bowl, sift flour, baking powder, baking soda, and salt; stir into butter mixture. Put dough in refrigerator for 1 hour.
|
||||
3. Roll dough into 1 inch balls and put on baking sheets. Flatten each ball with a fork, making a crisscross pattern. Bake in a preheated 375 degrees F oven for about 10 minutes or until cookies begin to brown.
|
BIN
test/assets/images/3953273590_704e3899d5_m.jpg
Normal file
BIN
test/assets/images/3953273590_704e3899d5_m.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
test/assets/images/500x300.png
Normal file
BIN
test/assets/images/500x300.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
test/assets/images/apple-touch-icon.png
Normal file
BIN
test/assets/images/apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
test/assets/images/bio-photo-2.jpg
Normal file
BIN
test/assets/images/bio-photo-2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue