Update docs
This commit is contained in:
@@ -5,15 +5,16 @@ excerpt:
|
||||
sidebar:
|
||||
title: "v3.0"
|
||||
nav: docs
|
||||
modified: 2016-04-13T15:54:02-04:00
|
||||
---
|
||||
|
||||
Nothing clever here :wink:. Layouts, data files, and includes are all placed in their default locations. Stylesheets and scripts in `assets`, and a few development related files in the root.
|
||||
Nothing clever here :wink:. Layouts, data files, and includes are all placed in their default locations. Stylesheets and scripts in `assets`, and a few development related files in the project's root directory.
|
||||
|
||||
```bash
|
||||
minimal-mistakes
|
||||
├── _data # data files for customizing the theme
|
||||
| ├── navigations.yml # main navigation links
|
||||
| └── ui-text.yml # text used through out the theme's UI
|
||||
| └── ui-text.yml # text used throughout the theme's UI
|
||||
├── _includes
|
||||
| ├── analytics-providers # snippets for analytics (Google and custom)
|
||||
| ├── comments-providers # snippets for comments (Disqus, Facebook, Google+, and custom)
|
||||
@@ -22,9 +23,9 @@ minimal-mistakes
|
||||
| ├── base_path # site.url + site.baseurl shortcut
|
||||
| ├── feature_row # feature row helper
|
||||
| ├── gallery # image gallery helper
|
||||
| ├── group-by-array # group by array helper for index listings
|
||||
| ├── group-by-array # group by array helper for archives
|
||||
| ├── nav_list # navigation list helper
|
||||
| ├── toc # Markdown table of contents helper
|
||||
| ├── toc # table of contents helper
|
||||
| └── ...
|
||||
├── _layouts
|
||||
| ├── archive-taxonomy.html # tag/category archive for Jekyll Archives plugin
|
||||
@@ -34,19 +35,19 @@ minimal-mistakes
|
||||
| ├── single.html # single document (post/page/etc)
|
||||
| └── splash.html # splash page
|
||||
├── assets
|
||||
| ├── _scss # stylesheet source in SCSS
|
||||
| ├── _scss # stylesheet source files
|
||||
| | ├── vendor # vendor SCSS partials
|
||||
| | ├── main.scss # all SCSS partials are imported here
|
||||
| | └── ... # SCSS partials
|
||||
| | ├── main.scss # imports all SCSS partials
|
||||
| | └── ... # theme SCSS partials
|
||||
| ├── css
|
||||
| | └── main.css # optimized stylesheet for the theme
|
||||
| | └── main.css # optimized stylesheet loaded in <head>
|
||||
| ├── fonts
|
||||
| | └── fontawesome-webfont # Font Awesome webfonts
|
||||
| ├── js
|
||||
| | ├── plugins # jQuery plugins
|
||||
| | ├── vendor # vendor scripts
|
||||
| | ├── _main.js # scripts to be loaded after jQuery and plugins
|
||||
| | └── main.min.js # optimized and concatenated script file for the theme
|
||||
| | ├── _main.js # plugin settings and other scripts to load after jQuery
|
||||
| | └── main.min.js # optimized and concatenated script file loaded before </body>
|
||||
├── images # image assets for posts/pages/collections/etc.
|
||||
├── _config.yml # site configuration
|
||||
├── Gemfile # gem file dependencies
|
||||
|
||||
Reference in New Issue
Block a user