라이트닝 테마는 _config.yml 외에 세 가지 데이터 파일을 사용합니다.
└─ _data
    ├─ author.yml
    ├─ navigation.yml
    └─ settings.yml
settings.yml
_data/settings.yml은 라이트닝 테마의 세팅이 들어갑니다.
| 속성 | 유형 | 설명 | 
|---|---|---|
| locale | String | html엘리먼트의lang속성을 지정. 기본값ko | 
| navigation:uppercase | Boolean | 메뉴 항목을 모두 대문자로 변경 | 
| text:showData | Boolean | texts레이아웃의 목록에서 날짜 출력여부 | 
| footer:copyright | String or HTML | footer의 텍스트 변경 | 
아래는 _data/settings/yml의 예시입니다.
locale: ~
navigation:
  uppercase: true
text:
  showDate: false
footer:
  copyright: ~
author.yml
| 속성 | 설명 | 
|---|---|
| name | 창작자의 이름 | 
| 창작자의 이메일 | |
| description | 창작자에 대한 소개. 입력시 사이트 메인헤더에 출력 | 
| exhibition | 창작자의 전시 이력(배열 형태로 작성) | 
_data/author.yml의 예시입니다.
name: paikwiki
email: paikwiki@gmail.com
description: Geek with the keys
copyright_year: 2018
exhibitions:
  -
    title: Solo Exhibition
    list:
      - 2018 the 2nd Solo Exhibition @Somewhere
      - 2018 the 1st Solo Exhibition @Somewhere
  -
    title: Group Exhibition
    list:
      - 2018 the 2nd Exhibition @Somewhere
      - 2018 the 1st Exhibition @Somewhere
navigation.yml
| 속성 | 설명 | 
|---|---|
| items | 메뉴 항목. 배열 형태로 입력 | 
| items:title | 메뉴에 출력할 텍스트 | 
| items:url | 메뉴에 링크할 주소 | 
_data/navigation.yml의 예시입니다.
items:
  - title: welcome
    url: /
  - title: quickstart
    url: /quickstart
  - title: docs
    url: /docs
  - title: Built with ⚡️
    url: /companions
  - title: support
    url: /support