Skip to content

Commit 807a99f

Browse files
committed
[MOD] Make the website mine by configuring constants [MOD] Re-style and document syntax highlighting [REF] Migrate a blog post from Blogger [ADD] Posts about current experiences [ADD] Local and Development config for easier testing [ADD] Scripts to run and document development [ADD] Debugging aids: no custom font, show ID on hover, expanded generated CSS [FIX] baseurl issues when the site is in a subfolder [FIX] Clean up most absolute uris so it can be run locally [REF] Make it easier to modify colors by using SASS methods [REF] Navigation to have less duplication [REF] Extract some smaller includes [REF] Better sitemap.xml logic [REF] Move files from root folder to subfolder to reduce clutter [MOD] Move meta to top and lateral navigation to bottom [ADD] Auto-darken the page in video posts
1 parent 93117fb commit 807a99f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2082
-928
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
_site/
2-
.sass-cache/
1+
/.sass-cache
2+
/_site
3+
/Gemfile.lock

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.twisterrob.net

Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source 'https://rubygems.org'
2+
# for some reason omitting the verison defaults to 0
3+
gem 'github-pages', '>=38'
4+
# TODO wait for wdm 0.1 to merge https://github.com/Maher4Ever/wdm/pull/16
5+
gem 'wdm', :git => 'git://github.com/lowjoel/wdm.git' if Gem.win_platform?

README.md

+21-50
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,21 @@
1-
2-
[![Start Video](https://github.com/Phlow/feeling-responsive/blob/gh-pages/images/video-feeling-responsive-1280x720.jpg)](https://www.youtube.com/embed/3b5zCFSmVvU)
3-
4-
## A Responsive Jekyll Theme: *Feeling Responsive*
5-
6-
Do you want to get to know *Feeling Responsive*? Than check it out first and have a look on its home at <http://phlow.github.io/feeling-responsive/>.
7-
8-
To get to know *Feeling Responsive* check out all the features explained in the [documentation][1].
9-
10-
And what license is *Feeling Responsive* released under? [This one][2].
11-
12-
13-
14-
## Why use this theme?
15-
16-
Feeling Responsive is heavily customizable.
17-
18-
1. Language-Support :)
19-
2. Optimized for speed and it's responsive.
20-
3. Built on Foundation Framework.
21-
4. Six different Headers.
22-
5. Customizable navigation, footer,...
23-
24-
**[More ›][3]**
25-
26-
27-
28-
## Video Tutorial
29-
30-
Click the image to [watch the YouTube-Video-Tutorial][4].
31-
32-
[![Start Video](https://github.com/Phlow/feeling-responsive/blob/gh-pages/images/video-feeling-responsive-tutorial-frontpage.jpg)](https://www.youtube.com/watch?v=rLS-BEvlEyY)
33-
34-
35-
36-
37-
38-
39-
40-
41-
[1]: http://phlow.github.io/feeling-responsive/documentation/
42-
[2]: https://github.com/Phlow/feeling-responsive/blob/gh-pages/LICENSE
43-
[3]: http://phlow.github.io/feeling-responsive/info/
44-
[4]: https://www.youtube.com/watch?v=rLS-BEvlEyY
45-
[5]: #
46-
[6]: #
47-
[7]: #
48-
[8]: #
49-
[9]: #
50-
[10]: #
1+
# Install
2+
Requires both ruby and devkit on Windows 7 to install native extensions
3+
4+
gem install bundler
5+
bundle install
6+
## Fix stuff
7+
8+
```
9+
gem install pygments.rb --version "0.6.3"
10+
```
11+
12+
## Run
13+
```
14+
bundle exec jekyll serve
15+
```
16+
17+
## Usage
18+
Update dependencies occasionally by
19+
```
20+
bundle update
21+
```

0 commit comments

Comments
 (0)