Skip to content

Commit

Permalink
Fix issue #115
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmorand committed Mar 12, 2018
1 parent 07efec0 commit 7ec4345
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
theme: jekyll-theme-minimal
sass:
sass_dir: ./assets/css
sass_dir: ./assets/css
baseurl: /twing
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<body>
<div class="wrapper">
<header>
<a href="{% link index.md %}"> <h1>{{ site.title | default: site.github.repository_name }}</h1> </a>
<a href="{{ site.baseurl }}{% link index.md %}"> <h1>{{ site.title | default: site.github.repository_name }}</h1> </a>
<p>{{ site.description | default: site.github.project_tagline }}</p>

{% if site.github.is_project_page %}
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -614,4 +614,4 @@ When an output buffer is active, `TwingOutputBuffering.echo()` writes to this ac

> See `lib/output-buffering.d.ts` for implementation details.

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})
2 changes: 1 addition & 1 deletion docs/filters/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Filters
{% endfor %}
</ul>

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})
2 changes: 1 addition & 1 deletion docs/functions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Functions
{% endfor %}
</ul>

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ npm install twing --save
git clone git://github.com/ericmorand/twing.git
```

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})

[download-url]: https://github.com/ericmorand/twing/releases
[npm-url]: https://docs.npmjs.com/getting-started/installing-node
2 changes: 1 addition & 1 deletion docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ class SleepExtenstion extends Twing.TwingExtension {
}
```

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})
2 changes: 1 addition & 1 deletion docs/operators/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Operators
{% endfor %}
</ul>

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})
2 changes: 1 addition & 1 deletion docs/tags/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Tags
{% endfor %}
</ul>

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})
2 changes: 1 addition & 1 deletion docs/tags/set.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ The `set` tag can also be used to 'capture' chunks of text:
```
{% endraw %}

[back]({% link tags/index.md %})
[back]({{ site.baseurl }}{% link tags/index.md %})
2 changes: 1 addition & 1 deletion docs/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ The above sample shows the default whitespace control modifier, and how you can

{% endraw %}

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})

[tags]: {{ site.baseurl }}/{{ site.data.navigation_reference.sections.tags.url }}
[tag-autoescape]: {{ site.baseurl }}/{{ site.data.navigation_reference.sections.tags.items.autoescape.url }}
Expand Down
2 changes: 1 addition & 1 deletion docs/tests/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Tests
{% endfor %}
</ul>

[back]({% link index.md %})
[back]({{ site.baseurl }}{% link index.md %})

0 comments on commit 7ec4345

Please sign in to comment.