default

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
defaults:
  # global
  - scope:
      path: ""
    values:
      # info
      show_date : false
      read_time : false
      share     : false
      related   : false
      comments  : false
      # table of contents
      toc_sticky : true
      toc_label  : "Table of Contents"
      toc_icon   : list-alt
      # view
      sidebar:
        nav: nav_side
  # _posts
  - scope:
      path: ""
      type: posts
    values:
      # info
      author_profile : false
      # table of contents
      toc : true
      # view
      layout : single
  # _pages
  - scope:
      path: ""
      type: pages
    values:
      # info
      author_profile : true
      # table of contents
      toc : false
      # view
      layout : splash

document

1
2
3
4
5
6
7
8
---
date       : 2021-01-01
title      : post_A_1
categories : cat_A
permalink  : /cat_A/post_A_1
published  : true
hidden     : false
---