forked from daattali/beautiful-jekyll
-
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.
use post layout by default for blog posts; use same layouts as my web…
…site
- Loading branch information
Showing
6 changed files
with
58 additions
and
48 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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
common-css: | ||
- "/css/bootstrap.min.css" | ||
- "/css/main.css" | ||
common-ext-css: | ||
- "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" | ||
common-googlefonts: | ||
- "Lora:400,700,400italic,700italic" | ||
- "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" | ||
common-js: | ||
- "/js/jquery-1.11.2.min.js" | ||
- "/js/bootstrap.min.js" | ||
- "/js/main.js" | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
{% include nav.html %} | ||
|
||
{{ content }} | ||
|
||
{% include footer.html %} | ||
|
||
{% include footer-scripts.html %} | ||
|
||
</body> | ||
</html> |
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,32 +1,9 @@ | ||
--- | ||
common-css: | ||
- "/css/bootstrap.min.css" | ||
- "/css/main.css" | ||
common-ext-css: | ||
- "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" | ||
common-googlefonts: | ||
- "Lora:400,700,400italic,700italic" | ||
- "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" | ||
common-js: | ||
- "/js/jquery-1.11.2.min.js" | ||
- "/js/bootstrap.min.js" | ||
- "/js/main.js" | ||
layout: base | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<div class="intro-header"></div> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
{% include nav.html %} | ||
|
||
{{ content }} | ||
|
||
{% include footer.html %} | ||
|
||
{% include footer-scripts.html %} | ||
|
||
</body> | ||
</html> | ||
<div role="main" class="container"> | ||
{{ content }} | ||
</div> |
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
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
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