Skip to content
Jeff edited this page Mar 20, 2014 · 6 revisions
project/
├── content/
|   ├── uploads/
│   ├── mu-plugins/
│   └── themes/
│       └── theme-name/
│           ├── assets/
│           │   ├── fonts/
│           │   ├── images/
│           │   ├── scripts/
│           │   │   ├── main.min.js
│           │   │   ├── plugins.min.js
│           │   └── styles/
│           │       ├── editor-style.min.css
│           │       ├── main.min.css
│           │       └── shame.css
│           ├── includes/
│           |   ├── init.php
│           |   ├── theme-functions.php
│           |   ├── theme-helpers.php
│           |   ├── theme-post-types.php
│           |   └── theme-require-plugins.php
│           ├── source/
|           |   ├── scripts/
|           |   |   └── main.js
│           │   └── styles/
│           │       ├── partials/
│           │       │   ├── _base.global.scss
│           │       │   ├── _base.layout.scss
│           │       │   ├── _base.shared.scss
│           │       │   ├── _base.typography.scss
│           │       │   ├── _object.nav.scss
│           │       │   ├── _object.revealer.scss
│           │       │   ├── _object.sprite.scss
│           │       │   ├── _page.single.scss
│           │       │   ├── _trump.debug.scss
│           │       │   └── _trump.print.scss
│           │       ├── _mixins.scss
│           │       ├── _variables.scss
│           │       ├── editor-style.scss
│           │       ├── shame.scss
│           │       └── style.scss
│           ├── vendor/
│           ├── templates/
│           |   ├── partials/
│           |   |   ├── content-page.php
│           |   |   ├── content-single.php
│           |   |   ├── content.php
│           |   |   ├── inc-meta.php
│           |   |   └── inc-nav.php
│           |   └── page-custom.php
│           ├── .bowerrc
│           ├── .jshintrc
│           ├── bower.json
│           ├── gruntfile.js
│           ├── package.json
│           ├── 404.php
│           ├── archive.php
│           ├── comments.php
│           ├── footer.php
│           ├── front-page.php
│           ├── functions.php
│           ├── header.php
│           ├── index.php
│           ├── page.php
│           ├── search.php
│           ├── sidebar.php
│           ├── single.php
│           ├── style.css
│           └── screenshot.png
├── shared/
|   └── content/
|       └── uploads/
├── wp/
├── .editorconfig
├── .gitignore
├── .htaccess
├── humans.txt
├── robots.txt
├── index.php
├── local-config.php
└── wp-config.php

These are the files and folders.

Clone this wiki locally