Sha256: 798af4e7bdf661be6d2e1d9144103321719112896562ce939a0dd2a7651d4281

Contents?: true

Size: 738 Bytes

Versions: 8

Compression:

Stored size: 738 Bytes

Contents

{% assign see-also_title = site.data.strings.see-also.title | default: "Related Topics" %}
{% assign related = "" | split: "," %}
{% for tag in page.tags %}
  {% assign related = related | concat: site.pages | where_exp: "p","p.tags contains tag" | where_exp: "p","p.url != page.url" %}
{% endfor %}
{% include hook.liquid template="see-also_html" spot="mid" %}
{% if related.size > 0 %}
<div class="jumbotron col-4-sm">
  <i class="icon fa fa-caret-square-o-down fa-4x float-right" style="margin-top: .5em;"></i>
  <div class="h5">{{ see-also_title }}</div>
  <ul class="card-text mb-auto list-unstyled">
  {% for topic in related %}
    <li><a href="{{ topic.url }}">{{ topic.title }}</a></li>
  {% endfor %}
  </ul>
</div>
{% endif %}

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
asciidocsy-0.3.0 _includes/see-also.html
asciidocsy-0.3.0.pre.rc4 _includes/see-also.html
asciidocsy-0.3.0.pre.rc3 _includes/see-also.html
asciidocsy-0.3.0.pre.rc2 _includes/see-also.html
asciidocsy-0.3.0.pre.rc1 _includes/see-also.html
asciidocsy-jekyll-theme-0.3.0.pre.rc2 _includes/see-also.html
asciidocsy-jekyll-theme-0.3.0.pre.rc1 _includes/see-also.html
asciidocsy-jekyll-theme-0.3.0.pre.dev _includes/see-also.html