Welcome to Jekyll Bootstrap
All The Power of Jekyll and Bootstrap 4
Main Content
Welcome to Jekyll Bootstrap, a new from-scratch iteration at a Jekyll theme,
written using Bootstrap v4. By default, the first paragraph will appear
in the index summary, complete with styling. If you define an excerpt_separator
in the post’s
frontmatter, you can have more or fewer paragraphs in the index excerpts. Try it!
This post can be found in the _posts
directory, following the convention of
YYYY-MM-DD-name-of-post.md
.
New as of v0.8.0 You can add callout sections with the {:.info}
, {:.success}
, {:.warning}
,
and {:.danger}
If you want to make them sticky, change that to {:.<class>.sticky}
, but make sure
you avoid any sticky asides before the excerpt separator!.
How to Use Jekyll
Jekyll offers all the power of Markdown, along with extended support for code snippets and other useful tech blogging tools. You can include code in the standard Markdown form:
class Dog
def bark
puts 'woof'
end
end
#=> prints 'woof'
Or using Jekyll’s Liquid syntax:
1
2
3
4
5
class Dog
def bark
puts 'woof'
end
end