Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.05 KB

jekyll_start.md

File metadata and controls

42 lines (28 loc) · 1.05 KB
layout title tagline
page
Перші кроки з Джекілом
Supporting tagline

http://jekyllthemes.org/ http://jekyllbootstrap3.tk/preview/

Read Jekyll Quick Start

Complete usage and documentation available at: Jekyll Bootstrap

Update Author Attributes

In _config.yml remember to specify your own data:

title : My Blog =)

author :
  name : Name Lastname
  email : [email protected]
  github : username
  twitter : username

The theme should reference these variables whenever needed.

Sample Posts

This blog contains sample posts which help stage pages and blog data. When you don't need the samples anymore just delete the _posts/core-samples folder.

$ rm -rf _posts/core-samples

Here's a sample "posts list".

    {% for post in site.posts %}
  • {{ post.date | date_to_string }} » {{ post.title }}
  • {% endfor %}