Skip to content

Instantly share code, notes, and snippets.

@necolas
Created December 18, 2013 01:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save necolas/8015644 to your computer and use it in GitHub Desktop.
Save necolas/8015644 to your computer and use it in GitHub Desktop.
Wintersmith site structure, using Component(1), Nunjucks, and eventually Rework.
.
├── README.md
├── component.json
├── components (installed by Component(1))
├── components-data
│   ├── a-page.md
│   └── articles
├── components-local
│   ├── article
│   │   ├── article.css
│   │   ├── article.html
│   │   └── component.json
│   ├── base
│   │   ├── base.css
│   │   ├── base.html
│   │   └── component.json
│   ├── header
│   │   ├── header.css
│   │   ├── header.html
│   │   └── component.json
│   ├── index
│   │   └── index.html
│   ├── list
│   │   ├── list.css
│   │   ├── list.html
│   │   └── component.json
│   └── page
│   └── page.html
├── config.json
└── package.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment