Skip to content

Instantly share code, notes, and snippets.

@rrshaban
Created July 5, 2015 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rrshaban/e90d948a01323f022637 to your computer and use it in GitHub Desktop.
Save rrshaban/e90d948a01323f022637 to your computer and use it in GitHub Desktop.
running `tree` on the directory created by `hexo init`
$ tree
.
├── _config.yml
├── package.json
├── scaffolds
│   ├── draft.md
│   ├── page.md
│   └── post.md
├── source
│   └── _posts
│   └── hello-world.md
└── themes
└── landscape
├── Gruntfile.js
├── LICENSE
├── README.md
├── _config.yml
├── layout
│   ├── _partial
│   │   ├── after-footer.ejs
│   │   ├── archive-post.ejs
│   │   ├── archive.ejs
│   │   ├── article.ejs
│   │   ├── footer.ejs
│   │   ├── google-analytics.ejs
│   │   ├── head.ejs
│   │   ├── header.ejs
│   │   ├── mobile-nav.ejs
│   │   ├── post
│   │   │   ├── category.ejs
│   │   │   ├── date.ejs
│   │   │   ├── gallery.ejs
│   │   │   ├── nav.ejs
│   │   │   ├── tag.ejs
│   │   │   └── title.ejs
│   │   └── sidebar.ejs
│   ├── _widget
│   │   ├── archive.ejs
│   │   ├── category.ejs
│   │   ├── recent_posts.ejs
│   │   ├── tag.ejs
│   │   └── tagcloud.ejs
│   ├── archive.ejs
│   ├── category.ejs
│   ├── index.ejs
│   ├── layout.ejs
│   ├── page.ejs
│   ├── post.ejs
│   └── tag.ejs
├── package.json
├── scripts
│   └── fancybox.js
└── source
├── css
│   ├── _extend.styl
│   ├── _partial
│   │   ├── archive.styl
│   │   ├── article.styl
│   │   ├── comment.styl
│   │   ├── footer.styl
│   │   ├── header.styl
│   │   ├── highlight.styl
│   │   ├── mobile.styl
│   │   ├── sidebar-aside.styl
│   │   ├── sidebar-bottom.styl
│   │   └── sidebar.styl
│   ├── _util
│   │   ├── grid.styl
│   │   └── mixin.styl
│   ├── _variables.styl
│   ├── fonts
│   │   ├── FontAwesome.otf
│   │   ├── fontawesome-webfont.eot
│   │   ├── fontawesome-webfont.svg
│   │   ├── fontawesome-webfont.ttf
│   │   └── fontawesome-webfont.woff
│   ├── images
│   │   └── banner.jpg
│   └── style.styl
├── fancybox
│   ├── blank.gif
│   ├── fancybox_loading.gif
│   ├── fancybox_loading@2x.gif
│   ├── fancybox_overlay.png
│   ├── fancybox_sprite.png
│   ├── fancybox_sprite@2x.png
│   ├── helpers
│   │   ├── fancybox_buttons.png
│   │   ├── jquery.fancybox-buttons.css
│   │   ├── jquery.fancybox-buttons.js
│   │   ├── jquery.fancybox-media.js
│   │   ├── jquery.fancybox-thumbs.css
│   │   └── jquery.fancybox-thumbs.js
│   ├── jquery.fancybox.css
│   ├── jquery.fancybox.js
│   └── jquery.fancybox.pack.js
└── js
└── script.js
19 directories, 77 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment