Skip to content

Commit 25cb280

Browse files
Merge pull request #419 from rvedotrc/update-links
Update links
2 parents a57bf25 + 7edabde commit 25cb280

File tree

36 files changed

+64
-66
lines changed

36 files changed

+64
-66
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
22
#
33
# If you find yourself ignoring temporary files generated by your text editor
44
# or operating system, you probably want to add a global ignore instead:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source 'https://rubygems.org'
1+
source 'https://rubygems.org/'
22

33
gem 'jekyll', '~> 3.6.3' # https://pages.github.com/versions/
44

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is the source code for <http://tutorials.codebar.io>
1+
This is the source code for <http://tutorials.codebar.io/>
22

33
## Getting started
44

@@ -8,7 +8,7 @@ indicated in `.ruby-version`, as well as the [bundler](https://bundler.io/) gem.
88

99
1. `bundle install`, which will install Jekyll
1010
2. `bundle exec jekyll serve --watch`
11-
3. go to <http://localhost:4000>
11+
3. go to <http://localhost:4000/>
1212

1313
(*you could also use your favourite manager, `chruby`, `rbenv`, `rvm`, etc. See
1414
instructions for `rvm` at the end of this README*)
@@ -125,7 +125,7 @@ $ rvm install 2.2.1 # inside `codebar/tutorials` folder
125125
$ rvm gemset use codebar-tutorial --create
126126
$ gem install bundler
127127
$ bundle install
128-
$ jekyll serve # go to http://127.0.0.1:4000
128+
$ jekyll serve # go to http://127.0.0.1:4000/
129129
```
130130

131131
If you also want to make changes to the JavaScript of the site, you'll need to have

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h1 class="entry-title">{{ page.title }}</h1>
1212
{{ content }}
1313
<footer>
1414
<a href='http://tutorials.codebar.io/'>Back to tutorials</a>
15-
<a href='http://codebar.io/'>codebar mainpage</a>
15+
<a href='https://codebar.io/'>codebar mainpage</a>
1616
</footer>
1717
</article>
1818
</div>

examples/colorpicker/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</head>
99
<body>
1010
<header>
11-
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
11+
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
1212
</header>
1313
<div id="container">
1414
<h1>Color picker</h1>
@@ -29,7 +29,7 @@ <h1>Color picker</h1>
2929
</div>
3030
</div>
3131
<footer>
32-
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
32+
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
3333
</footer>
3434
</body>
3535
</html>

examples/github-user-finder/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88
<body>
99
<header>
10-
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
10+
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
1111
</header>
1212
<div id="container">
1313
<div class="search">
@@ -20,7 +20,7 @@ <h2></h2>
2020
</div>
2121
</div>
2222
<footer>
23-
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
23+
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
2424
</footer>
2525
</body>
2626
</html>

examples/hangman-canvas/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88
<body>
99
<header>
10-
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
10+
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
1111
</header>
1212
<div id="container">
1313
<canvas id="hangman" width="400" height="500"></canvas>
@@ -16,7 +16,7 @@
1616

1717
</div>
1818
<footer>
19-
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
19+
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
2020
</footer>
2121
</body>
2222
</html>

examples/hangman/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88
<body>
99
<header>
10-
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
10+
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
1111
</header>
1212
<div id="container">
1313
<div class="board">
@@ -28,7 +28,7 @@
2828

2929
</div>
3030
<footer>
31-
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
31+
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
3232
</footer>
3333
</body>
3434
</html>

examples/tv-schedule/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88
<body>
99
<header>
10-
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
10+
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
1111
</header>
1212
<div id="container">
1313
<h1>What's on TV tomorrow?</h1>
@@ -17,7 +17,7 @@ <h1>What's on TV tomorrow?</h1>
1717
</ul>
1818
</div>
1919
<footer>
20-
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
20+
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
2121
</footer>
2222
</body>
2323
</html>

examples/wishlist/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</head>
99
<body>
1010
<header>
11-
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
11+
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
1212
</header>
1313
<div id="container">
1414
<h1>Wish List</h1>
@@ -21,7 +21,7 @@ <h1>Wish List</h1>
2121
<button id="add-to-list">Add to list</button>
2222
</div>
2323
<footer>
24-
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
24+
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
2525
</footer>
2626
</body>
2727
</html>

0 commit comments

Comments
 (0)