13 lines
239 B
Elixir
13 lines
239 B
Elixir
|
defmodule Website.ProjectsLayout do
|
||
|
use Tableau.Layout, layout: Website.RootLayout
|
||
|
use Phoenix.Component
|
||
|
|
||
|
def template(assigns) do
|
||
|
~H"""
|
||
|
<article>
|
||
|
<%= {:safe, render(@inner_content)} %>
|
||
|
</article>
|
||
|
"""
|
||
|
end
|
||
|
end
|