├── .gitignore
├── 404.html
├── LICENSE
├── README.md
├── _config.yml
├── _includes
├── footer.html
├── head.html
├── scripts
│ ├── disqus.html
│ ├── google-analytics.html
│ ├── page-effects.html
│ ├── share.html
│ ├── sidebar.html
│ ├── simple-search.html
│ ├── tags.html
│ └── timeago.html
└── sidenav.html
├── _layouts
├── default.html
└── post.html
├── _posts
├── 2015-02-27-hello-world.markdown
├── 2015-03-16-archived-post-example.markdown
├── 2015-03-16-post-template.markdown
├── 2015-03-19-typography.markdown
├── 2015-03-20-code-syntax.markdown
├── 2015-03-27-example-1.markdown
├── 2015-03-27-example-2.markdown
├── 2015-03-27-example-3.markdown
├── 2015-03-27-example-4.markdown
├── 2015-03-27-example-5.markdown
├── 2015-03-27-example-6.markdown
├── 2015-03-27-example-7.markdown
└── 2015-03-27-example-8.markdown
├── archive.html
├── assets
├── css
│ ├── _sass
│ │ ├── _bootstrap.min.scss
│ │ ├── _font-awesome.min.scss
│ │ ├── _site.scss
│ │ └── _syntax.scss
│ └── main.scss
├── fonts
│ ├── FontAwesome.otf
│ ├── close-btn.svg
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── menu-btn.svg
├── images
│ ├── wangana.png
│ └── wangana_screenshot_index.png
└── js
│ ├── bootstrap.min.js
│ ├── jquery-1.10.2.js
│ ├── jquery.timeago.js
│ └── simpleJekyllSearch.js
├── contact.html
├── favicon.png
├── feed.xml
├── index.html
├── search.html
├── search.json
├── sitemap.xml
└── tags.html
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 | .DS_Store
3 | nbproject
4 | .sass-cache
--------------------------------------------------------------------------------
/404.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: 404
4 | ---
5 |
6 |
7 |
Oops!
8 |
Requested resource is unavailable —
9 |
I can't seem to find the page you're looking for.
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Nii Adjetey Sowah
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of
6 | this software and associated documentation files (the "Software"), to deal in
7 | the Software without restriction, including without limitation the rights to
8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 | the Software, and to permit persons to whom the Software is furnished to do so,
10 | subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |  Wangana - Jekyll Theme
2 | ==============
3 |
4 | Wangana is responsive [Jekyll](http://jekyllrb.com/) theme, perfect for powering your GitHub hosted blog. Created with love by [iamnii](https://twitter.com/thesowah).
5 |
6 | * Demo [here](http://thesowah.github.io/wangana/)
7 |
8 | ## Screenshot
9 | 
10 |
11 | ## Contributing
12 | 1. Fork the theme ( https://github.com/thesowah/wangana/fork ) The `master` branch is for development and pull requests. The `gh-pages` branch is for the demo page; don't bother.
13 | 2. Create your feature branch (`git checkout -b my-new-feature`)
14 | 3. Commit your changes (`git commit -am 'Add some feature'`)
15 | 4. Push to the branch (`git push origin my-new-feature`)
16 | 5. Create a new Pull Request
17 |
18 | ## Issues
19 | [Open](https://github.com/iamnii/wangana/issues/new) issues if you run into trouble or have suggestions. Pull Requests always welcome.
20 |
21 | ## Installation & Usage
22 | 1 > [Download](https://github.com/thesowah/wangana/archive/master.zip) package
23 |
24 | 2 > Fill in the details of the configuration file (/_config.yml) by uncommenting the differents and edit to taste
25 | Edit: _config.yml (general options), main.css (theme colors & fonts)
26 | ``` bat
27 | wangana/
28 | ├── _config.yml
29 | ├── _assets/
30 | ├── _scss/
31 | ├── main.scss
32 | ```
33 |
34 | 3 > Run locally with the following commands while in the root directory and view in a browser at localhost:4000
35 | ``` bat
36 | $ jekyll build
37 | # Compile and build site files
38 |
39 | $ jekyll serve --watch
40 | # Serve site locally
41 | ```
42 |
43 | ## Copyright & License
44 | The MIT License (MIT), Copyright (c) 2014 Nii Adjetey Sowah. [Read full document.](LICENSE)
45 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | name: Wangana
2 | description: Jekyll theme
3 |
4 | sass:
5 | sass_dir: assets/css/_sass
6 | style: :compressed
7 |
8 | markdown: redcarpet
9 | redcarpet:
10 | extensions: ["no_intra_emphasis", "tables", "fenced_code_blocks", "autolink", "strikethrough", "superscript"]
11 |
12 | url: https://thesowah.github.io/wangana
13 | permalink: /:year/:month/:title/
14 | owner:
15 | name: #
16 | twitter: #
17 | github: #
18 | disqus_shortname: #
19 |
20 | ga_id: #
21 | ga_username: #
22 |
23 | timezone: Africa/Accra
24 |
--------------------------------------------------------------------------------
/_includes/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |