forked from home-assistant/home-assistant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Reordered configs in Rakefile based on importance.
2. Refactored stylesheets to simplify dreictory trees.
- Loading branch information
Showing
20 changed files
with
37 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
## -- Rsync Deploy config -- ## | ||
# Be sure your public key is listed in your server's ~/.ssh/authorized_keys file | ||
ssh_user = "[email protected]" | ||
document_root = "~/dev.octopress.org/" | ||
|
||
## -- Misc Configs, you probably have no reason to changes these -- ## | ||
|
||
public_dir = "public" # compiled site directory | ||
source_dir = "source" # source file directory | ||
deploy_dir = "_deploy" # deploy directory (for Github pages deployment) | ||
stash_dir = "_stash" # directory to stash posts for speedy generation | ||
posts_dir = "_posts" # directory for blog files | ||
post_format = "markdown" # file format for new posts when using the post rake task | ||
|
||
## -- Rsync Deploy config -- ## | ||
# Be sure your public key is listed in your server's ~/.ssh/authorized_keys file | ||
ssh_user = "[email protected]" | ||
document_root = "~/dev.octopress.org/" | ||
|
||
desc "Initial setup for Octopress: copies the default theme into the path of Jekyll's generator. rake install defaults to rake install[classic] to install a different theme run rake install[some_theme_name]" | ||
task :install, :theme do |t, args| | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
@import "compass"; | ||
@import "default/style"; | ||
@include global-reset; | ||
@include reset-html5; | ||
|
||
@import "core/utilities"; | ||
@import "partials/solarized"; | ||
@import "custom/colors"; | ||
@import "core/theme"; | ||
@import "core/layout"; | ||
@import "core/typography"; | ||
|
||
/* layout partials */ | ||
@import "partials/header"; | ||
@import "partials/navigation"; | ||
@import "partials/page"; | ||
@import "partials/sidebar"; | ||
@import "partials/blog"; | ||
@import "partials/footer"; | ||
@import "partials/syntax"; | ||
@import "custom/styles"; |