Files
nairobi/app/components/widget/feeds/process_component.html.erb
taitus 35db41827c Add tag list component to process feed
Remember that this component (widget/feeds/process) is displayed both in
the home page and in the target index.
2021-01-31 13:53:57 +01:00

15 lines
530 B
Plaintext

<div class="legislation-process card">
<%= link_to url_for(process) do %>
<figure class="figure-card">
<%= image_tag("welcome_process.png", alt: "") %>
<figcaption>
<span><%= t("welcome.feed.process_label") %></span><br>
<h3><%= process.title %></h3>
</figcaption>
</figure>
<p class="description small"><%= process.summary %></p>
<%= render SDG::TagListComponent.new(process, linkable: false) %>
<p class="small"><%= t("welcome.feed.see_process") %></p>
<% end %>
</div>