Skip to content

Commit

Permalink
Remedies GAR 1.6 violations (#5815)
Browse files Browse the repository at this point in the history
Fixes #5790 go/GAR-web#headings
  • Loading branch information
atsansone authored May 14, 2024
1 parent dc785e5 commit bccd657
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/content/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To update these cards, edit src/_data/docs_cards.yml.
{% capture index0Modulo3 %}{{ forloop.index0 | modulo:3 }}{% endcapture %}
{% capture indexModulo3 %}{{ forloop.index | modulo:3 }}{% endcapture %}
<div class="card">
<h3><a href="{{card.url}}">{{card.name}}</a></h3>
<h2><a href="{{card.url}}">{{card.name}}</a></h2>
<p>{{card.description}}</p>
</div>
{% endfor -%}
Expand Down
4 changes: 2 additions & 2 deletions src/content/guides/language/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ These two resources are popular with both beginning Dart developers and experts.

<div class="card-grid">
<div class="card">
<h3><a href="/language">Language tour</a></h3>
<h2><a href="/language">Language tour</a></h2>
<p>A walk through all of the major features of the Dart language.</p>
</div>
<div class="card">
<h3><a href="/effective-dart">Effective Dart</a></h3>
<h2><a href="/effective-dart">Effective Dart</a></h2>
<p>A set of guides on how to write the best Dart code
possible. Guidelines cover style, documentation, usage,
and design.</p>
Expand Down
7 changes: 3 additions & 4 deletions src/content/resources/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,19 @@ toc: false

Check out the following Dart language resources:


<div class="card-grid">
<div class="card">
<h3><a href="/resources/books">Books</a></h3>
<h2><a href="/resources/books">Books</a></h2>
<p>A collection of books about Dart.</p>
</div>

<div class="card">
<h3><a href="/code-of-conduct">Code of conduct</a></h3>
<h2><a href="/code-of-conduct">Code of conduct</a></h2>
<p>Keeping community spaces safe and respectful.</p>
</div>

<div class="card">
<h3><a href="/resources/videos">Videos</a></h3>
<h2><a href="/resources/videos">Videos</a></h2>
<p>Videos aimed at Dart developers.</p>
</div>
</div>

0 comments on commit bccd657

Please sign in to comment.