Skip to content

Commit 5e97f47

Browse files
Merge pull request sergiokopplin#166 from sergiokopplin/develop
Develop
2 parents 037c6fc + 20e5da1 commit 5e97f47

22 files changed

+19
-454
lines changed

.editorconfig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
2-
3-
# top-most EditorConfig file
41
root = true
52

6-
# Unix-style newlines with a newline ending every file
73
[*]
84
end_of_line = lf
95
insert_final_newline = true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DS_Store
2-
node_modules
32
_site
43
.sass-cache
54
.npm-debug.log
5+
Gemfile.lock

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ env:
1414
branches:
1515
only:
1616
- gh-pages
17+
- develop

404.html

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

Gemfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
source 'http://rubygems.org'
22

3-
gem 'github-pages'
3+
gem 'jekyll'
44
gem 'rake'
55
gem 'rouge'
6-
gem 'pygments.rb'
7-
gem 'jekyll'
86
gem 'html-proofer'
97
gem 'jemoji'
108
gem 'jekyll-mentions'
119
gem 'jekyll-seo-tag'
1210
gem 'jekyll-feed'
1311
gem 'jekyll-sitemap'
1412
gem 'jekyll-gist'
13+
gem 'jekyll-paginate'

Gemfile.lock

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

README.md

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,17 @@
1616
<b><a href="README.md#how-to">How to</a></b>
1717
|
1818
<b><a href="README.md#tests">Tests</a></b>
19-
|
20-
<b><a href="README.md#donate">Donate</a></b>
21-
|
22-
<b><a href="README.md#problems">Problems</a></b>
2319
</p>
2420

2521
<p align="center">
26-
<img src="https://raw.githubusercontent.com/sergiokopplin/indigo/gh-pages/screen-shot.png" />
22+
<img src="https://raw.githubusercontent.com/sergiokopplin/indigo/develop/assets/screen-shot.png" />
2723
</p>
2824

2925
## What has inside?
3026

31-
- [Jekyll](https://jekyllrb.com/), [Gulp](http://gulpjs.com/), [BrowserSync](https://www.browsersync.io/), [Sass](http://sass-lang.com/) ~[RSCSS](http://rscss.io/)~ and [SVG](https://www.w3.org/Graphics/SVG/)
27+
- [Jekyll](https://jekyllrb.com/), [Gulp](http://gulpjs.com/), [Sass](http://sass-lang.com/) ~[RSCSS](http://rscss.io/)~ and [SVG](https://www.w3.org/Graphics/SVG/)
3228
- Tests with [Travis](https://travis-ci.org/)
33-
- Google Speed: [98/100](https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fsergiokopplin.github.io%2Findigo%2F)
29+
- Google Speed: [98/100](https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fsergiokopplin.github.io%2Findigo%2F);
3430
- No JS. :sunglasses:
3531

3632
## Setup
@@ -40,9 +36,8 @@
4036
2. Fork the project [Indigo](https://github.com/sergiokopplin/indigo/fork)
4137
3. Edit `_config.yml` with your data.
4238
4. `bundle install`
43-
5. `npm i && npm i -g gulp`
44-
6. `gulp`
45-
7. open in your browser: `http://localhost:3000`
39+
5. `npm run serve`
40+
6. open in your browser: `http://localhost:4000`
4641

4742
## Settings
4843

@@ -66,38 +61,13 @@ and lot of other options, like width, projects, pages, read-time, tags, related
6661
- [Tests with Travis CI - Tutorial](http://www.raywenderlich.com/109418/travis-ci-tutorial)
6762
- [Why Sass?](https://github.com/sergiokopplin/indigo/issues/117)
6863

69-
#### Create posts:
70-
71-
You can use the `initpost.sh` to create your new posts. Just follow the command:
72-
73-
```
74-
./initpost.sh -c Post Title
75-
```
76-
77-
The new file will be created at `_posts` with this format `date-title.md`.
78-
7964
## Tests
8065

8166
You can test your app with:
8267

8368
```bash
8469
npm run test
85-
# or
86-
bundle exec htmlproof ./_site
87-
````
88-
89-
## Donate
90-
91-
If you liked my work, buy me a coffee <3
92-
93-
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=U7B6UM6QWLG7E)
94-
95-
## Problems?
96-
97-
Tell me on github or open a [issue](https://github.com/sergiokopplin/indigo/issues/new).
98-
99-
#### Inspirations:
100-
- [Addy Osmani](https://addyosmani.com/)
70+
```
10171

10272
---
10373

_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,3 @@ gems:
105105

106106
jekyll-mentions:
107107
base_url: https://github.com
108-
109-
exclude: [README.md, Gemfile, Gemfile.lock, node_modules, gulpfile.js, package.json, _site, src, vendor, CNAME, indigo-gh-pages.zip, Rakefile, screen-shot.png, travis.sh, tasks]

_config_dev.yml

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

_drafts/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)