Welcome to Jekyll Bootstrap
All The Power of Jekyll and Bootstrap 4
Welcome to Jekyll Bootstrap, a new from-scratch iteration at a Jekyll theme, written using Bootstrap v4. This first paragraph will appear in the index summary, complete with styling.
This post can be font in the _posts
directory, following the convention of
YYYY-MM-DD-name-of-post.md
.
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
Comments