Skip to content

Commit

Permalink
Change source order of sidebar so menu items can easily be "tabbed" to
Browse files Browse the repository at this point in the history
- Close #10
  • Loading branch information
mmistakes committed Mar 30, 2017
1 parent 985fff0 commit 43bc86f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Google Analytics tracking ID, Disqus comments, to `/docs` demo site.

### Changed
- Change source order of `.sidebar` and `.canvas` so menu items can easily be "tabbed" to. [#10](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/10)
- Refactor sidebar off-canvas menu and improve animation. [#9](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/9) [#15](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/15)
- Removed tinted background from `<th>` elements.
- Permalink structure of `/docs` demo site.
Expand Down
14 changes: 7 additions & 7 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@
</button>
</div>

<div class="canvas">
<div class="wrapper">
{% include masthead.html %}
{{ content }}
</div>
</div>

<div id="sidebar" class="sidebar">
<div class="inner">
{% include navigation.html %}
{% include contact-list.html %}
</div>
</div>

<div class="canvas">
<div class="wrapper">
{% include masthead.html %}
{{ content }}
</div>
</div>

{% include scripts.html %}

</body>
Expand Down
14 changes: 7 additions & 7 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@
</button>
</div>

<div class="canvas">
<div class="wrapper">
{% include masthead.html %}
{{ content }}
</div>
</div>

<div id="sidebar" class="sidebar">
<div class="inner">
{% include navigation.html %}
{% include contact-list.html %}
</div>
</div>

<div class="canvas">
<div class="wrapper">
{% include masthead.html %}
{{ content }}
</div>
</div>

{% include scripts.html %}

</body>
Expand Down

0 comments on commit 43bc86f

Please sign in to comment.