Skip to content

Commit

Permalink
Change sidebar to left.
Browse files Browse the repository at this point in the history
Update README
Add htaccess for apache
  • Loading branch information
geozak committed Nov 2, 2016
1 parent 6bb629f commit 94b8843
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
_cache
_site
public
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Options +MultiViews
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Jekyll Clean Dark
============

This theme was created on top of Jekyll Clean theme by Scotte, you can view the original version in action [on his blog](https://scotte.github.io).
This theme was created on top of Jekyll Clean Dark and Jekyll Clean theme by Streetturtle and Scotte (respoctively), you can view the original versions in action on their blogs: [streetturtle's](http://pavelmakhov.com) and [scotte's](https://scotte.github.io).

* Get it from [github](https://github.com/streetturtle/jekyll-clean-dark).
* Get it from [github](https://github.com/geozak/jekyll-clean-dark).
<!---
* See the [live demo](http://pavelmakhov.com/jekyll-clean-dark).
* See it [in action on my own blog](http://pavelmakhov.com).
-->

This theme uses some parts of Twitter Bootstrap, which allows it to look nice on a mobile devices using a collapsable nav bar and hiding the
sidebar.
Expand Down
6 changes: 4 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ name: Blog Name
description: Software Developer

# Url is currently only used only for the RSS feed in feed.xml
url: http://streetturtle.github.io
url: http://geozak.github.io
#url: http://jekyll.dev
#url: http://localhost:4000

# For a project page here should be a project name. Otherwise (for user's/organizaion's page leave it empty)
#baseurl: ''
baseurl: '/jekyll-clean-dark'

share:
Expand All @@ -19,7 +21,7 @@ share:
email: true

social:
github: streetturtle
github: geozak
stackoverflow: ''
linkedin:
instagram: ''
Expand Down
8 changes: 4 additions & 4 deletions _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<div class="content">
<div class="container container-center">
<div class="row">
<div class="col-md-8">
<div class="col-md-3 hidden-xs">
{% include sidebar.html %}
</div>
<div class="col-md-9">
<div class="well">
{{ content }}
</div>
</div>
<div class="col-md-4 hidden-xs">
{% include sidebar.html %}
</div>
</div>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
<div class="content">
<div class="container container-center">
<div class="row">
<div class="col-md-8">
<div class="col-md-3 hidden-xs">
{% include sidebar.html %}
</div>
<div class="col-md-9">
<div class="article">
<div class="well">
<h1><a href="{{ site.url | append:site.baseurl | append:page.url }}">{{ page.title }}</a></h1>
Expand Down Expand Up @@ -33,9 +36,6 @@ <h1><a href="{{ site.url | append:site.baseurl | append:page.url }}">{{ page.tit
</div>
</div>
</div>
<div class="col-md-4 hidden-xs">
{% include sidebar.html %}
</div>
</div>
</div>
{% include disqus-comments.html %}
Expand Down

0 comments on commit 94b8843

Please sign in to comment.