Skip to content

Commit 678b85d

Browse files
committed
correct links to avoid 301 Redirects
1 parent 2877718 commit 678b85d

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
markdown: redcarpet
22
highlighter: pygments
3-
permalink: /blog/:year/:month/:day/:title
3+
permalink: /blog/:year/:month/:day/:title/
44
redcarpet:
55
extensions: ['with_toc_data']

_includes/top.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h1 id="site-title">
3030
<li class="menu-item install"><a class="spec" href="/install.html">Install</a></li>
3131
<li class="menu-item getting_started"><a class="spec" href="/getting_started/1.html">Getting Started</a></li>
3232
<li class="menu-item docs"><a class="spec" href="/docs.html">Docs</a></li>
33-
<li class="menu-item blog"><a class="spec" href="/blog">Blog</a></li>
33+
<li class="menu-item blog"><a class="spec" href="/blog/">Blog</a></li>
3434
<li class="menu-item source"><a class="spec" href="https://github.com/elixir-lang/elixir">Source</a></li>
3535
<li class="menu-item packages"><a class="spec" href="http://hex.pm/">Packages</a></li>
3636

_posts/2014-09-18-elixir-v1-0-0-released.markdown

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Elixir will follow [semantic versioning](http://semver.org), which means code wr
2424

2525
Elixir is composed of 6 applications, all under the same versioning constraints:
2626

27-
* [Elixir](/docs/stable/elixir) - the Elixir compiler, runtime and the standard library
28-
* [EEx](/docs/stable/eex) - Elixir's templating library, useful for generating any kind of document dynamically
29-
* [ExUnit](/docs/stable/ex_unit) - Elixir's unit test library, with support for concurrent testing, custom formatters, filters and much more
30-
* [IEx](/docs/stable/iex) - Elixir's interactive shell with code reloading, auto-complete, and easy access to documentation, typespecs and more
31-
* [Logger](/docs/stable/logger) - the latest addition to the group, Logger provides reliable logging and configurable backends (with syslog, file and many other backends provided by the community)
32-
* [Mix](/docs/stable/mix) - Elixir's build tool that generates, compiles and tests projects as well as manages your dependencies
27+
* [Elixir](/docs/stable/elixir/) - the Elixir compiler, runtime and the standard library
28+
* [EEx](/docs/stable/eex/) - Elixir's templating library, useful for generating any kind of document dynamically
29+
* [ExUnit](/docs/stable/ex_unit/) - Elixir's unit test library, with support for concurrent testing, custom formatters, filters and much more
30+
* [IEx](/docs/stable/iex/) - Elixir's interactive shell with code reloading, auto-complete, and easy access to documentation, typespecs and more
31+
* [Logger](/docs/stable/logger/) - the latest addition to the group, Logger provides reliable logging and configurable backends (with syslog, file and many other backends provided by the community)
32+
* [Mix](/docs/stable/mix/) - Elixir's build tool that generates, compiles and tests projects as well as manages your dependencies
3333

3434
With v1.0.0, we are providing a stable platform for the community to leverage and extend, and we are extremely excited with the projects and possibilities that are ahead of us!
3535

docs.markdown

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ Choose which version you want documentation for.
1111
<span id="stable"></span>
1212
#### v1.0
1313

14-
* [Elixir](/docs/stable/elixir) - standard library
15-
* [EEx](/docs/stable/eex) - templating library
16-
* [ExUnit](/docs/stable/ex_unit) - unit test library
17-
* [IEx](/docs/stable/iex) - interactive shell
18-
* [Logger](/docs/stable/logger) - builtin Logger
19-
* [Mix](/docs/stable/mix) - build tool
14+
* [Elixir](/docs/stable/elixir/) - standard library
15+
* [EEx](/docs/stable/eex/) - templating library
16+
* [ExUnit](/docs/stable/ex_unit/) - unit test library
17+
* [IEx](/docs/stable/iex/) - interactive shell
18+
* [Logger](/docs/stable/logger/) - builtin Logger
19+
* [Mix](/docs/stable/mix/) - build tool
2020

2121
#### Master
2222

23-
* [Elixir](/docs/master/elixir) - standard library
24-
* [EEx](/docs/master/eex) - templating library
25-
* [ExUnit](/docs/master/ex_unit) - unit test library
26-
* [IEx](/docs/master/iex) - interactive shell
27-
* [Logger](/docs/master/logger) - builtin Logger
28-
* [Mix](/docs/master/mix) - build tool
23+
* [Elixir](/docs/master/elixir/) - standard library
24+
* [EEx](/docs/master/eex/) - templating library
25+
* [ExUnit](/docs/master/ex_unit/) - unit test library
26+
* [IEx](/docs/master/iex/) - interactive shell
27+
* [Logger](/docs/master/logger/) - builtin Logger
28+
* [Mix](/docs/master/mix/) - build tool

getting_started/mix_otp/introduction-to-mix.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Mix will default to the `:dev` environment, except for the `test` task that will
226226

227227
## 1.5 Exploring
228228

229-
There is much more to Mix, and we will continue to explore it as we build our project. A [general overview is available on the Mix documentation](/docs/stable/mix).
229+
There is much more to Mix, and we will continue to explore it as we build our project. A [general overview is available on the Mix documentation](/docs/stable/mix/).
230230

231231
Keep in mind that you can always invoke the help task to list all available tasks:
232232

0 commit comments

Comments
 (0)