Skip to content

Commit

Permalink
light URL problem, better layout
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelfournier committed Oct 13, 2021
1 parent 6473197 commit 02d4c4b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion _layouts/component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
layout: default
---

{{ content }}

<div class="tags">
id: {{ page.id }} <br/>
persona: {{ page.persona }} <br/>
Expand All @@ -14,4 +16,3 @@


</div>
{{ content }}
3 changes: 2 additions & 1 deletion _layouts/story.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
layout: default
---

{{ content }}

<div class="tags">
id: {{ page.id }} <br/>
persona: {{ page.persona }} <br/>
Expand All @@ -14,4 +16,3 @@


</div>
{{ content }}
2 changes: 1 addition & 1 deletion pages/external-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permalink: /external-components.html
<h2>External components</h2>
<ul>
{% for comp in site.external-components %}
<li><a href="{{ site.baseurl }}{{ comp.url }}">
<li><a href="{{ comp.url | relative_url }}">
{{ comp.path }} ({{ comp.name }})
</a></li>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion pages/rulebook.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permalink: /rulebook.html
<h2>Rulebook</h2>
<ul>
{% for file in site.rulebook %}
<li><a href="{{ site.baseurl }}{{ file.url }}">
<li><a href="{{ file.url | relative_url }}">
{{ file.id | replace: "/rulebook/", "" }}
</a></li>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion pages/stories.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permalink: /stories.html
<h2>Stories</h2>
<ul>
{% for story in site.stories %}
<li><a href="{{ site.baseurl }}{{ story.url }}">
<li><a href="{{ story.url | relative_url}}">
{{ story.persona }} ({{ story.title }})
</a></li>
{% endfor %}
Expand Down

0 comments on commit 02d4c4b

Please sign in to comment.