[Blog] repository 폴더구조
_includes
├── analytics-providers
| └── custom.html
| └── google.html
| └── google-gtag.html
| └── google-universal.html
├── comments-providers #댓글 기능 제공 사이트 관련
| └── custom.html
| └── custom_scripts.html
| └── discourse.html
| └── disqus.html
| └── facebook.html
| └── scripts.html
| └── staticman.html
| └── staticman_v2.html
| └── utterances.html
├── footer
| └── custom.html
├── head
| └── custom.html
├── search
| └── algolia-search-scripts.html
| └── google-search-scritps.html
| └── lunar-search-scripts.html
| └── search_form.html
├── analystics.html
├── archive-single.html #카테고리, 최근포스트, 태그스 글 등의 각각의 리스트 아이템들 설정
├── author-profile.html
├── author-profile-custom-links.html #왼쪽 사이드바 프로필 레이아웃의 커스텀 링크 설정
├── breadcrumbs.html
├── browser-upgrade.html
├── category-list.html
├── comment.html
├── comments.html
├── documents-collection.html
├── feature_row
├── footer.html
├── gallery
├── gruop-by-array
├── head.html
├── masthead.html
├── nav_list
classes : wide
├── page_date.html #post글들의 날짜 포맷설정.
├── page_hero.html
├── page_hero_video.html
├── page_meta.html
├── page_taxonomy.html
├── paginator.html
├── post_pagination.html
├── posts-category.html
├── posts-tag.html
├── posts-tag.html
├── scripts.html
├── seo.html
├── sidebar.html
├── skip-links.html
├── social-share.html
├── tag-list.html
├── toc
├── toc.html
└── video
dataformat 관련 참고
yena님 블로그 : https://blog.yena.io/studynote/2017/11/06/Date-Formatting.html
https://mmistakes.github.io/minimal-mistakes/docs/stylesheets/
minmal_mistakes 폴더 경로
[repository] -> _sass -> minimal_mistakes
minimal_mistakes 폴더 구조
minimal-mistakes
├── _sass
| └── minimal-mistakes
| ├── vendor # vendor SCSS partials
| | ├── breakpoint # media query mixins
| | ├── magnific-popup # Magnific Popup lightbox
| | └── susy # Susy grid system
| ├── _animations.scss # animations
| ├── _archive.scss # archives (list, grid, feature views)
| ├── _base.scss # base HTML elements
| ├── _buttons.scss # buttons
| ├── _footer.scss # footer
| ├── _masthead.scss # 상단 타이틀, 메뉴 레이아웃
| ├── _mixins.scss # mixins (em function, clearfix)
| ├── _navigation.scss # nav links (breadcrumb, priority+, toc, pagination, etc.)
| ├── _notices.scss # notices
| ├── _page.scss # 전체 페이지. 즉 전체 사이트 form 설정, 여기서 양옆 margin 설정가능
| ├── _print.scss # print styles
| ├── _reset.scss # reset
| ├── _sidebar.scss # 양옆의 사이드바. 프로필부분
| ├── _syntax.scss # syntax highlighting
| ├── _tables.scss # tables
| ├── _utilities.scss # utility classes (text/image alignment)
| └── _variables.scss # theme defaults (fonts, colors, etc.)
├── assets
| ├── css
| | └── main.scss # main stylesheet, loads SCSS partials in _sass
_site 폴더는 지워도 posts generating 시에 내용물과 함께 새로생김.
post의 날짜가 안적혀 있으면 파일의 이름 앞부분 yyyy-mm-dd 앞부분으로 날짜로 해서 post글을 생성함. 따라서 포스트글의 파일이름 날짜부분이 바뀌면 포스트글의 날짜도 바뀐다.