Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
doup committed Dec 10, 2024
1 parent 294766b commit e730ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/layouts/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ <h2 class="example__title">{{ category.title }} / {{ page.title }}</h2>
</div>

{% for shader in page.extra.shader_code_paths %}
<input class="tabs__radio" tabindex="1" name="tabs" type="radio" id="tab{{loop.index}}">
<label class="tabs__label" for="tab{{loop.index}}">{{ shader }}</label>
<input class="tabs__radio" tabindex="1" name="tabs" type="radio" id="tab{{ loop.index }}">
<label class="tabs__label" for="tab{{ loop.index }}">{{ shader }}</label>
<div class="tabs__panel" tabindex="1">
<div class="example__code media-content">
{% set code = load_data(path="static/assets/examples/" ~ shader) %}
Expand Down

0 comments on commit e730ef4

Please sign in to comment.