Skip to content

Latest commit

 

History

History
68 lines (62 loc) · 2.57 KB

File metadata and controls

68 lines (62 loc) · 2.57 KB
layout default
title Comparisons
permalink /special-pages/comparisons/

Comparisons

Head-to-head pages for choosing between roles, tools, architectures, and operating models.

{% assign items = site.wiki | sort_natural: "title" %} {% assign guide_count = 0 %} {% assign comparison_count = 0 %} {% assign roadmap_count = 0 %} {% assign transition_count = 0 %} {% assign howto_count = 0 %} {% assign all_count = 0 %} {%- for item in items -%} {%- unless item.redirect_to -%} {%- if item.tags contains "guide" -%} {% assign guide_count = guide_count | plus: 1 %} {% assign all_count = all_count | plus: 1 %} {%- endif -%} {%- if item.tags contains "comparison" -%} {% assign comparison_count = comparison_count | plus: 1 %} {% assign all_count = all_count | plus: 1 %} {%- endif -%} {%- if item.tags contains "roadmap" -%} {% assign roadmap_count = roadmap_count | plus: 1 %} {% assign all_count = all_count | plus: 1 %} {%- endif -%} {%- if item.tags contains "transition" -%} {% assign transition_count = transition_count | plus: 1 %} {% assign all_count = all_count | plus: 1 %} {%- endif -%} {%- if item.tags contains "how-to" -%} {% assign howto_count = howto_count | plus: 1 %} {% assign all_count = all_count | plus: 1 %} {%- endif -%} {%- endunless -%} {%- endfor -%}

{{ comparison_count }} {% if comparison_count == 1 %}page{% else %}pages{% endif %}

Guides {{ guide_count }} Comparisons {{ comparison_count }} Roadmaps {{ roadmap_count }} Transitions {{ transition_count }} How-tos {{ howto_count }} All {{ all_count }}

{% if comparison_count > 0 %}

{% for item in items %} {% if item.tags contains 'comparison' and item.redirect_to == nil %} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {% endif %} {% endfor %}
{% else %}

No comparisons yet.

{% endif %}