-
Notifications
You must be signed in to change notification settings - Fork 652
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Centra
committed
Apr 14, 2015
1 parent
66dd83d
commit abb1ed1
Showing
9 changed files
with
354 additions
and
58 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{html,js,scss}] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 2 |
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,16 +1,27 @@ | ||
# Centrarium | ||
|
||
A custom theme for my Jekyll blog. If you like it, you're welcome to use it, too! | ||
A custom theme for [my Jekyll blog][bencentra]. If you like it, you're welcome to use it, too! | ||
|
||
Uses [Bourbon][bourbon], [Neat][neat], and [Bitters][bitters] (thanks, thoughtbot!), as well as [Font Awesome][fontawesome]. | ||
Built with these awesome libraries: | ||
* [Bourbon][bourbon] | ||
* [Neat][neat] | ||
* [Bitters][bitters] | ||
* [Refills][refills] | ||
* [Font Awesome][fontawesome] | ||
|
||
Demo: TO-DO. | ||
Demo: TO-DO | ||
|
||
## Installation | ||
|
||
TO-DO. | ||
TO-DO | ||
|
||
## Configuration | ||
|
||
TO-DO | ||
|
||
[bencentra]: http://bencentra.com | ||
[bourbon]: http://bourbon.io/ | ||
[neat]: http://neat.bourbon.io/ | ||
[bitters]: http://bitters.bourbon.io/ | ||
[fontawesome]: http://fortawesome.github.io/Font-Awesome/ | ||
[refills]: http://refills.bourbon.io/ | ||
[fontawesome]: http://fortawesome.github.io/Font-Awesome/ |
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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
<header class="site-header"> | ||
<div class="wrapper"> | ||
<!-- Site Brand (logo, etc) --> | ||
<div class="site-brand"> | ||
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a> | ||
</div> | ||
<!-- Site Navigation --> | ||
<nav class="site-nav"> | ||
<a href="#" class="menu-icon"> | ||
<i class="fa fa-bars"></i> | ||
</a> | ||
<div class=""> | ||
{% for page in site.pages %} | ||
<header class="navigation" role="banner"> | ||
<div class="navigation-wrapper"> | ||
<a href="{{ site.baseurl }}/" class="logo"> | ||
<!-- <img src="//raw.githubusercontent.com/thoughtbot/refills/master/source/images/placeholder_logo_1_dark.png" alt="Logo Image"> --> | ||
<span>{{ site.title }}</span> | ||
</a> | ||
<a href="javascript:void(0)" class="navigation-menu-button" id="js-mobile-menu"> | ||
<i class="fa fa-bars"></i> | ||
</a> | ||
<nav role="navigation"> | ||
<ul id="js-navigation-menu" class="navigation-menu show"> | ||
{% for page in site.pages %} | ||
{% if page.title %} | ||
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a> | ||
<li class="nav-link"><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> |
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
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
Oops, something went wrong.