20 lines
419 B
Elixir
20 lines
419 B
Elixir
defmodule MonoTab.Pages.Posts do
|
|
use Tableau.Page,
|
|
layout: MonoTab.IndexLayout,
|
|
permalink: "/posts",
|
|
title: "Latest Posts"
|
|
|
|
use Phoenix.Component
|
|
|
|
def template(assigns) do
|
|
~H"""
|
|
<section>
|
|
<p>
|
|
Browse through our collection of articles on Elixir, functional programming,
|
|
web development, and software engineering best practices.
|
|
</p>
|
|
</section>
|
|
"""
|
|
end
|
|
end
|