Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Fix typo on W3C references #354

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
* [Added] Added 'Person' as a type for the Main Entity of Page
* [Added] Added Vimeo Handle to Social Media settings
* [Added] Added a 'globalMetaOverride' setting to config.php
* [Added] SEOmetrics checks for HTML validity via the WC3 Validator
* [Added] SEOmetrics checks for HTML validity via the W3C Validator
* [Added] Added a Score % summary for each SEOmetrics category
* [Added] SEOmetrics now includes Google Pagespeed Insights scores and Google Mobile Usability
* [Added] SEOmetrics checks for SSL encryption via https
Expand Down
2 changes: 1 addition & 1 deletion releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
"[Added] Added 'Person' as a type for the Main Entity of Page",
"[Added] Added Vimeo Handle to Social Media settings",
"[Added] Added a 'globalMetaOverride' setting to config.php",
"[Added] SEOmetrics checks for HTML validity via the WC3 Validator",
"[Added] SEOmetrics checks for HTML validity via the W3C Validator",
"[Added] Added a Score % summary for each SEOmetrics category",
"[Added] SEOmetrics now includes Google Pagespeed Insights scores and Google Mobile Usability scores",
"[Added] SEOmetrics checks for SSL encryption via https",
Expand Down
4 changes: 2 additions & 2 deletions templates/_seo_metrics.twig
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,12 @@
<tr>
{% set totalStats = totalStats + 1 %}
<td class="text-center">{% if validatorStatus == "Valid" %}{% set totalPassed = totalPassed + 1 %}<span class="goodscore">{{ checkmark |raw }}</span>{% else %}<span class="badscore">{{ xmark |raw }}</span>{% endif %}</td>
<td class="text-left"><strong>WC3 HTML Validity - </strong>WC3 HTML Validator status: {% if validatorStatus == "Valid" %}<span class="goodscore">{% else %}<span class="badscore">{% endif %}{{ validatorStatus }}</span>. Results: {{ validatorErrors }} errors, {{ validatorWarnings }} warnings. In addition to being important to ensure that your webpage displays properly, HTML validity can also affect web crawler's ability to parse and index your pages. <a href="{{ validatorUrl }}" target="_blank">Learn More</a></td>
<td class="text-left"><strong>W3C HTML Validity - </strong>W3C HTML Validator status: {% if validatorStatus == "Valid" %}<span class="goodscore">{% else %}<span class="badscore">{% endif %}{{ validatorStatus }}</span>. Results: {{ validatorErrors }} errors, {{ validatorWarnings }} warnings. In addition to being important to ensure that your webpage displays properly, HTML validity can also affect web crawler's ability to parse and index your pages. <a href="{{ validatorUrl }}" target="_blank">Learn More</a></td>
</tr>
{% else %}
<tr>
<td class="text-center"><span class="attentionscore">{{ attentionmark |raw }}</span></td>
<td class="text-left"><strong>WC3 HTML Validity - </strong>Unable to determine WC3 HTML validity. Is this a valid, publicly accessible URL? <a href="{{ validatorUrl }}" target="_blank">Learn More</a></td>
<td class="text-left"><strong>W3C HTML Validity - </strong>Unable to determine W3C HTML validity. Is this a valid, publicly accessible URL? <a href="{{ validatorUrl }}" target="_blank">Learn More</a></td>
</tr>
{% endif %}

Expand Down