Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
Merge pull request #41 from ft-interactive/double-arrows
Browse files Browse the repository at this point in the history
Reduced space between word and double arrow
  • Loading branch information
Sumeet Adur committed Dec 9, 2015
2 parents d50841b + e1f045d commit b59c0d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/definition-page.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
{{/if}}
{{#if relatedwords}}
<p class="detail relatedwords">Related:
{{#each relatedwords}}<a href="{{slug}}/">{{word}} &raquo;</a>{{#unless @last}}&comma;&nbsp;{{/unless}}{{/each}}
{{#each relatedwords}}<a href="{{slug}}/">{{word}}&raquo;</a>{{#unless @last}}&comma;&nbsp;{{/unless}}{{/each}}
</p>
{{/if}}
</div>
Expand All @@ -54,7 +54,7 @@
<a href="{{previousWord.slug}}/" class="previous-guff">&laquo; Previous<br><span class="preview">{{previousWord.word}}</span></a>
{{/if}}
{{#if nextWord}}
<a href="{{nextWord.slug}}/" class="next-guff">Next &raquo;<br><span class="preview">{{nextWord.word}}</span></a>
<a href="{{nextWord.slug}}/" class="next-guff">Next&raquo;<br><span class="preview">{{nextWord.word}}</span></a>
{{/if}}
</div>
</main>
Expand Down
4 changes: 2 additions & 2 deletions client/main-page.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{{/if}}
{{#if relatedwords}}
<p class="detail relatedwords">Related:
{{#each relatedwords}}<a href="{{slug}}/">{{word}} &raquo;</a>{{#unless @last}}&comma;&nbsp;{{/unless}}{{/each}}
{{#each relatedwords}}<a href="{{slug}}/">{{word}}&raquo;</a>{{#unless @last}}&comma;&nbsp;{{/unless}}{{/each}}
</p>
{{/if}}
</div>
Expand All @@ -39,7 +39,7 @@
<div class="paraHeads">All the guff</div>
{{#each words}}
<ul class="listing">
<a class="word" href="{{@key}}/">{{word}} &raquo;</a>
<a class="word" href="{{@key}}/">{{word}}&raquo;</a>
</ul>
{{/each}}
</ul>
Expand Down

0 comments on commit b59c0d2

Please sign in to comment.