Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 554378b

Browse files
committed
v.0.5.1
1 parent 2615279 commit 554378b

Some content is hidden

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

65 files changed

+828
-719
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
### Idea ###
2-
.idea
1+
### General ###
2+
*.lock
33

44
### Jekyll ###
55
_site/

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source "http://rubygems.org"
2+
3+
gem 'github-pages'
4+
gem 'compass'
5+
gem 'sass-media_query_combiner'
6+
gem 'autoprefixer-rails'

README.md

Lines changed: 13 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### About
44
Project Zeppelin allows you to setup awesome GDG DevFest site in 5 minutes.
55

6-
Project is builded on top of [Jekyll](http://jekyllrb.com/) - simple, blog-aware, static site generator. Jekyll also happens to be the engine behind GitHub Pages, which means you can use Jekyll to host your website from GitHub’s servers for free. [Learn more about Jekyll](http://jekyllrb.com/).
6+
Project is built on top of [Jekyll](http://jekyllrb.com/) - simple, blog-aware, static site generator. Jekyll also happens to be the engine behind GitHub Pages, which means you can use Jekyll to host your website from GitHub’s servers for free. [Learn more about Jekyll](http://jekyllrb.com/).
77

88
Template is brought by [GDG Lviv](http://lviv.gdg.org.ua/) team.
99

@@ -30,11 +30,16 @@ Or watch project presentation from [GDG[x] Townhall meeting](http://www.youtube.
3030

3131
## Local development
3232

33-
Check if you have [all requirments for local environment](http://jekyllrb.com/docs/installation/), install [Jekyll server](http://jekyllrb.com/docs/quickstart/) gem.
34-
Install GitHub pages
33+
Check if you have [all requirements for local environment](http://jekyllrb.com/docs/installation/).
34+
To install all development dependencies install [Bundler](http://bundler.io/).
3535
```bash
36-
gem install github-pages
36+
gem install bundler
3737
```
38+
and run next command from root folder:
39+
40+
```bash
41+
bundle install
42+
```
3843

3944
Run this command from project root folder:
4045
```bash
@@ -45,22 +50,7 @@ Site will be available at http://127.0.0.1:4000/zeppelin/ or http://localhost:40
4550
**NOTE:** in this mode all changes to html and data files will be automatically regenerated, but after changing ```_config.yml``` you have to restart server.
4651

4752
### Sass(Compass) support
48-
Install the latest version of [Compass](http://compass-style.org/). Ruby uses Gems to manage its various packages of code like Sass. In your open terminal window type:
49-
```bash
50-
gem install compass --pre
51-
```
52-
53-
Then for combining media queries you can use [Sass::MediaQueryCombiner](https://github.com/aaronjensen/sass-media_query_combiner) plugin. Install with command
54-
```bash
55-
gem install sass-media_query_combiner
56-
```
57-
58-
And for prefixing css3 properties use [Autoprefixer](https://github.com/ai/autoprefixer)
59-
```bash
60-
gem install autoprefixer-rails
61-
```
62-
63-
**Note:** Also you need to install [Node.js](http://nodejs.org/download/)
53+
**Note:** You need to install [Node.js](http://nodejs.org/download/)
6454

6555
To watch changes of `.sass` files and compile it to the `.css` on a fly change property `safe: true` to `safe: false` in `_config.yml`.
6656
**Note: It works only on local machine, because GitHub runs Jekyll in `--save` [mode](https://help.github.com/articles/using-jekyll-with-pages/#configuration-overrides)**
@@ -70,7 +60,7 @@ Learn more about Sass development from [documentation](https://github.com/gdg-x/
7060

7161
### Resource optimizations (optional)
7262

73-
You can optimize images and minify css and javascript automaticaly (for now only on Windows).
63+
You can optimize images and minify css and javascript automatically (for now only on Windows).
7464
But for Mac OS users available amazing tool - [imageoptim](https://imageoptim.com/). Thanks [@raphaelsavina](https://github.com/raphaelsavina) for link.
7565
Optimize all images by running this script from `/automation/images/` folder:
7666
```bash
@@ -87,13 +77,6 @@ Learn more about available optimization options from [documentation](https://git
8777
### Documentation
8878
Quick-start guide is not enough? Checkout [full documentation](https://github.com/gdg-x/zeppelin/wiki).
8979

90-
91-
### TODO List
92-
* Optimization scripts for mac and linux
93-
94-
### Known issues
95-
* Scrolling on open navbar
96-
9780
### Used libraries
9881
* [Bootstrap](https://github.com/twbs/bootstrap)
9982
* [Animate.css](https://github.com/daneden/animate.css)
@@ -129,7 +112,7 @@ Going to use template? Go on! The only thing we ask - let us know at [*lviv@gdg.
129112
* Design and web development: [Oleh Zasadnyy](https://github.com/ozasadnyy)
130113
* Idea: [Vitaliy Zasadnyy](https://github.com/zasadnyy)
131114

132-
### Licence
133-
Project is published under the [MIT licence](https://github.com/gdg-x/zeppelin/blob/master/LICENSE.txt). Feel free to clone and modify repo as you want, but don't forget to add reference to authors :)
115+
### License
116+
Project is published under the [MIT license](https://github.com/gdg-x/zeppelin/blob/master/LICENSE.txt). Feel free to clone and modify repo as you want, but don't forget to add reference to authors :)
134117

135118

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ findWayTransit: "TRANSIT"
215215
findWayFindFlight: "Find Flight"
216216
logisticsMapCenterCoordinates: "49.056728, 3.117289"
217217
logisticsMapMobileCenterCoordinates: "48.335365, 23.711648"
218-
logisticsMapAutoDirections: true
218+
logisticsMapAutoDirections: false
219219

220220
# Logistics Direction Details Block
221221
directionDetailsImage: "direction-details.jpg"

_sass/partials/_global.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ b, strong {
4242
}
4343
a {
4444
@include linkColor($link-color);
45-
&:hover {
45+
&:hover, &:active, &:focus {
4646
text-decoration: none;
4747
}
4848
}

_sass/vendor/_bootstrap-compass.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

_sass/vendor/_bootstrap-custom.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,45 @@
55
// Reset and dependencies
66
@import "bootstrap/normalize";
77
@import "bootstrap/print";
8+
// @import "bootstrap/glyphicons";
89

910
// Core CSS
1011
@import "bootstrap/scaffolding";
1112
@import "bootstrap/type";
1213
@import "bootstrap/code";
1314
@import "bootstrap/grid";
15+
// @import "bootstrap/tables";
1416
@import "bootstrap/forms";
1517
@import "bootstrap/buttons";
1618

1719
// Components
1820
@import "bootstrap/component-animations";
21+
// @import "bootstrap/dropdowns";
22+
// @import "bootstrap/button-groups";
23+
// @import "bootstrap/input-groups";
24+
// @import "bootstrap/navs";
25+
// @import "bootstrap/navbar";
26+
// @import "bootstrap/breadcrumbs";
27+
// @import "bootstrap/pagination";
28+
// @import "bootstrap/pager";
29+
// @import "bootstrap/labels";
30+
// @import "bootstrap/badges";
1931
@import "bootstrap/jumbotron";
2032
@import "bootstrap/thumbnails";
33+
// @import "bootstrap/alerts";
34+
// @import "bootstrap/progress-bars";
2135
@import "bootstrap/media";
36+
// @import "bootstrap/list-group";
37+
// @import "bootstrap/panels";
2238
@import "bootstrap/responsive-embed";
39+
// @import "bootstrap/wells";
2340
@import "bootstrap/close";
2441

2542
// Components w/ JavaScript
2643
@import "bootstrap/modals";
44+
// @import "bootstrap/tooltip";
45+
// @import "bootstrap/popovers";
46+
// @import "bootstrap/carousel";
2747

2848
// Utility classes
2949
@import "bootstrap/utilities";

_sass/vendor/_bootstrap-mincer.scss

Lines changed: 0 additions & 17 deletions
This file was deleted.

_sass/vendor/_bootstrap-sprockets.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

_sass/vendor/_bootstrap.scss

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)