Skip to content

Instantly share code, notes, and snippets.

@lauris
Created August 16, 2014 21:38
Show Gist options
  • Save lauris/5ac34dd97b178b073ece to your computer and use it in GitHub Desktop.
Save lauris/5ac34dd97b178b073ece to your computer and use it in GitHub Desktop.
Octopress default directory tree.
├── CHANGELOG.markdown
├── Gemfile
├── Gemfile.lock
├── README.markdown
├── Rakefile
├── _config.yml
├── config.rb
├── config.ru
├── plugins
│   ├── backtick_code_block.rb
│   ├── blockquote.rb
│   ├── category_generator.rb
│   ├── code_block.rb
│   ├── config_tag.rb
│   ├── gist_tag.rb
│   ├── haml.rb
│   ├── image_tag.rb
│   ├── include_array.rb
│   ├── include_code.rb
│   ├── jsfiddle.rb
│   ├── octopress_filters.rb
│   ├── pullquote.rb
│   ├── pygments_code.rb
│   ├── raw.rb
│   ├── render_partial.rb
│   ├── rubypants.rb
│   ├── titlecase.rb
│   └── video_tag.rb
├── public
├── sass
│   ├── _base.scss
│   ├── _partials.scss
│   ├── base
│   │   ├── _layout.scss
│   │   ├── _solarized.scss
│   │   ├── _theme.scss
│   │   ├── _typography.scss
│   │   └── _utilities.scss
│   ├── custom
│   │   ├── _colors.scss
│   │   ├── _fonts.scss
│   │   ├── _layout.scss
│   │   └── _styles.scss
│   ├── partials
│   │   ├── _archive.scss
│   │   ├── _blog.scss
│   │   ├── _footer.scss
│   │   ├── _header.scss
│   │   ├── _navigation.scss
│   │   ├── _sharing.scss
│   │   ├── _sidebar.scss
│   │   ├── _syntax.scss
│   │   └── sidebar
│   │   ├── _base.scss
│   │   ├── _delicious.scss
│   │   ├── _googleplus.scss
│   │   └── _pinboard.scss
│   ├── plugins
│   │   └── _plugins.scss
│   └── screen.scss
└── source
├── _includes
│   ├── after_footer.html
│   ├── archive_post.html
│   ├── article.html
│   ├── asides
│   │   ├── delicious.html
│   │   ├── github.html
│   │   ├── googleplus.html
│   │   ├── pinboard.html
│   │   └── recent_posts.html
│   ├── custom
│   │   ├── after_footer.html
│   │   ├── asides
│   │   │   └── about.html
│   │   ├── category_feed.xml
│   │   ├── footer.html
│   │   ├── head.html
│   │   ├── header.html
│   │   └── navigation.html
│   ├── disqus.html
│   ├── facebook_like.html
│   ├── footer.html
│   ├── google_analytics.html
│   ├── google_plus_one.html
│   ├── head.html
│   ├── header.html
│   ├── navigation.html
│   ├── post
│   │   ├── author.html
│   │   ├── categories.html
│   │   ├── date.html
│   │   ├── disqus_thread.html
│   │   └── sharing.html
│   └── twitter_sharing.html
├── _layouts
│   ├── category_index.html
│   ├── default.html
│   ├── page.html
│   └── post.html
├── _posts
├── assets
│   └── jwplayer
│   ├── glow
│   │   ├── controlbar
│   │   │   ├── background.png
│   │   │   ├── blankButton.png
│   │   │   ├── divider.png
│   │   │   ├── fullscreenButton.png
│   │   │   ├── fullscreenButtonOver.png
│   │   │   ├── muteButton.png
│   │   │   ├── muteButtonOver.png
│   │   │   ├── normalscreenButton.png
│   │   │   ├── normalscreenButtonOver.png
│   │   │   ├── pauseButton.png
│   │   │   ├── pauseButtonOver.png
│   │   │   ├── playButton.png
│   │   │   ├── playButtonOver.png
│   │   │   ├── timeSliderBuffer.png
│   │   │   ├── timeSliderCapLeft.png
│   │   │   ├── timeSliderCapRight.png
│   │   │   ├── timeSliderProgress.png
│   │   │   ├── timeSliderRail.png
│   │   │   ├── unmuteButton.png
│   │   │   └── unmuteButtonOver.png
│   │   ├── display
│   │   │   ├── background.png
│   │   │   ├── bufferIcon.png
│   │   │   ├── muteIcon.png
│   │   │   └── playIcon.png
│   │   ├── dock
│   │   │   └── button.png
│   │   ├── glow.xml
│   │   ├── playlist
│   │   │   ├── item.png
│   │   │   ├── itemOver.png
│   │   │   ├── sliderCapBottom.png
│   │   │   ├── sliderCapTop.png
│   │   │   ├── sliderRail.png
│   │   │   └── sliderThumb.png
│   │   └── sharing
│   │   ├── embedIcon.png
│   │   ├── embedScreen.png
│   │   ├── shareIcon.png
│   │   └── shareScreen.png
│   └── player.swf
├── atom.xml
├── blog
│   └── archives
│   └── index.html
├── favicon.png
├── images
│   ├── bird_32_gray.png
│   ├── bird_32_gray_fail.png
│   ├── code_bg.png
│   ├── dotted-border.png
│   ├── email.png
│   ├── line-tile.png
│   ├── noise.png
│   ├── rss.png
│   └── search.png
├── index.html
├── javascripts
│   ├── github.js
│   ├── libs
│   │   ├── jXHR.js
│   │   ├── jquery.min.js
│   │   └── swfobject-dynamic.js
│   ├── modernizr-2.0.js
│   ├── octopress.js
│   ├── pinboard.js
│   └── twitter.js
└── robots.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment