Skip to content

Commit

Permalink
fix proof views
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Nov 8, 2023
1 parent bbac553 commit 9fc3490
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/diffenator2/templates/diffbrowsers_proofer.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ <h3>Glyphset: {{ glyph_set }}</h3>
{% for section_title, strings in section.items() %}
<div class="box">
<div class="box-title">{{ section_title }}</div>
{% for string in strings %}
<div class="box-text {{ font_class.class_name }}" style="font-size: {{ pt_size }}pt">{{ string }}</div>
{% for sentence in strings %}
<div class="box-text {{ font_class.class_name }}" style="font-size: {{ pt_size }}pt" lang="{{ sentence['lang'] }}">
{{ sentence["string"] }}</div>
{% endfor %}
</div>
{% endfor %}
Expand All @@ -98,8 +99,10 @@ <h3>Glyphset: {{ glyph_set }}</h3>
{% for section_title, strings in section.items() %}
<div class="box">
<div class="box-title">{{ section_title }}</div>
{% for string in strings %}
<div class="box-text {{ font_class.class_name }} box-text" style="font-size: {{ pt_size }}pt">{{ string }}</div>
{% for sentence in strings %}
<div class="box-text {{ font_class.class_name }} box-text" style="font-size: {{ pt_size }}pt" lang="{{ sentence['lang'] }}">
{{ sentence["string"] }}
</div>
{% endfor %}
</div>
{% endfor %}
Expand Down

0 comments on commit 9fc3490

Please sign in to comment.