Skip to content

Commit

Permalink
Tidy up yes/no
Browse files Browse the repository at this point in the history
  • Loading branch information
iadawn committed Jun 5, 2023
1 parent c188eec commit 5aa5239
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _includes/individual-policy.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</li>
<li>Type: {{p.type}}</li>
<li>Scope: {{p.scope}}</li>
<li>Web only: {%if p.webonly == true %}yes{% else %}no{%endif%}</li>
<li>Web only: {%if p.webonly == true %}Yes{% else %}No{%endif%}</li>
<li>WCAG Version Used: {{p.wcagver}}</li>
{% if p.standard %}
{% unless p.standard == "None" or p.standard == "none" or p.standard == false %}
Expand Down
2 changes: 1 addition & 1 deletion _policies/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ For guidance on developing an accessibility policy for an organization, see [Dev
<td>{{p.enactdate}}</td>
<td class="hyphenated">{{p.type}}</td>
<td class="hyphenated">{{p.scope}}</td>
<td>{%if p.webonly == true %}yes{% else %}no{%endif%}</td>
<td>{%if p.webonly == true %}Yes{% else %}No{%endif%}</td>
<td>{{p.wcagver}}</td>
</tr>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion _policies/js/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ excerpt: none
"scope": [
{% assign scopes = p.scope | split: ", " %}{% for scope in scopes %}"{{scope | escape_once}}"{% unless forloop.last %},{% endunless %}{% endfor %}
],
"webonly": "{%if p.webonly == true %}yes{% else %}no{%endif%}",
"webonly": "{%if p.webonly == true %}Yes{% else %}No{%endif%}",
"wcagver": "{{p.wcagver | escape_once}}"
}{% unless outerlast == true and forloop.last == true %},{% endunless %}{% endfor %}{% endfor %}
]

0 comments on commit 5aa5239

Please sign in to comment.