- Support rendering articles over frontend URL - Support rendering articles over help center URL - Support rendering help center home page in the custom domain root
13 lines
344 B
Plaintext
13 lines
344 B
Plaintext
|
|
<%= render "public/api/v1/portals/hero", portal: @portal %>
|
|
|
|
<div class="max-w-4xl w-full flex-grow mx-auto py-16">
|
|
<div class="grid grid-cols-2 gap-x-32 gap-y-12">
|
|
<% @portal.categories.each do |category| %>
|
|
<%= render "public/api/v1/portals/category-block", category: category, portal: @portal %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
|