Skip to content

Latest commit

 

History

History
105 lines (81 loc) · 2.33 KB

sample.md

File metadata and controls

105 lines (81 loc) · 2.33 KB
layout title permalink
page
Sample
/sample/

Vida is a simple and beautiful jekyll theme, it has only the essential functions so that you can concentrate on the content of your blog.

First of all, let's have a glance at the basic styles: link, strong, italic, deletion, insertion.

Headers:

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

Lists:

  • list item 1
  • list item 2
  • list item 3
  1. list item 1
  2. list item 2
  3. list item 3

Blockquote:

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

BASSCSS colors:

  • black
  • gray
  • silver
  • white
  • aqua
  • blue
  • navy
  • teal
  • green
  • olive
  • lime
  • yellow
  • orange
  • red
  • fuchsia
  • purple
  • maroon

Horizontal rule:


Image:

Table:

Name Age Fruit
Alex 22 Apple
Bran 20 Orange
Mike 21 Waltermelon

Code snippet

// index.js
var arr = [1, 2, 3, 4, 5];
var b = arr.map(x => x * x);
console.log(b);