TokiTranslate/app/views/dictionary/show.html.erb
2023-10-22 14:05:01 -04:00

11 lines
174 B
Plaintext

<div>
<h1><%= @letter.to_s %></h1>
</div>
<% @words.each do |word| %>
<div>
<h2><%= word.word %></h2>
<%= render "definitions", word: word %>
</div>
<% end %>