867 B
867 B
title, intro
| title | intro |
|---|---|
| Equals Version To Deprecate | Remove liquid and content |
1
{% ifversion ghes = 2.13 %}
Alpha
{% endif %}
2
{% ifversion not fpt and ghes = 2.13 %}
Alpha
{% endif %}
3
{% ifversion fpt %}
Alpha
{% else %}
Bravo
{% ifversion ghes = 2.13 %}
Charlie
{% endif %}
{% endif %}
4
{% ifversion fpt %}
Alpha
{% ifversion ghes = 2.13 %}
Bravo
{% endif %}
{% else %}
Charlie
{% endif %}
5
{% ifversion ghes = 2.13 %}
Alpha
{% ifversion fpt %}
Bravo
{% endif %}
{% else %}
Charlie
{% endif %}
6
{% ifversion ghes = 2.13 %}
Alpha
{% else %}
Charlie
{% ifversion fpt or ghes > 2.13 %}
Bravo
{% endif %}
{% endif %}