rename from llmex to monotab

This commit is contained in:
2025-07-26 13:27:35 -04:00
parent 8da394b2a0
commit c993c04cdb
18 changed files with 105 additions and 85 deletions

View File

@@ -1,7 +1,8 @@
defmodule Llmex.Pages.About do
defmodule MonoTab.Pages.About do
use Tableau.Page,
layout: Llmex.PageLayout,
layout: MonoTab.PageLayout,
permalink: "/about"
use Phoenix.Component
def template(assigns) do
@@ -9,8 +10,7 @@ defmodule Llmex.Pages.About do
<section>
<h2>About</h2>
<p>
Welcome to Llmex Blog, a demonstration of building static sites with Elixir's Tableau generator.
This blog showcases the power and elegance of functional programming applied to web development.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi velit felis, fermentum id dolor luctus, pellentesque aliquam dui. In hac habitasse platea dictumst. Cras non erat sed risus aliquet molestie eu eget massa.
</p>
</section>
@@ -18,17 +18,21 @@ defmodule Llmex.Pages.About do
<h2>Technology Stack</h2>
<p>This blog is built using:</p>
<ul>
<li><a href="https://github.com/elixir-tools/tableau" target="_blank">Tableau</a> - Static site generator for Elixir</li>
<li><a href="https://github.com/artalar/mono" target="_blank">Mono</a> - A brutalist CSS framework for clean, semantic styling</li>
<li>
<a href="https://github.com/elixir-tools/tableau" target="_blank">Tableau</a>
- Static site generator for Elixir
</li>
<li>
<a href="https://github.com/artalar/mono" target="_blank">Mono</a>
- A brutalist CSS framework for clean, semantic styling
</li>
</ul>
</section>
<section>
<h2>Our Philosophy</h2>
<p>
We believe in the power of functional programming to create maintainable,
scalable, and elegant solutions. Through this blog, we aim to share insights,
tutorials, and experiences from the world of Elixir and functional web development.
Proin nec sem vitae neque vehicula sagittis. Curabitur placerat, magna vel sodales rutrum, turpis massa cursus justo, quis faucibus nisl ante non est. Quisque eget dui venenatis, luctus ligula eget, malesuada nisl.
</p>
</section>

View File

@@ -1,16 +1,16 @@
defmodule Llmex.Pages.Index do
defmodule MonoTab.Pages.Index do
use Tableau.Page,
layout: Llmex.RootLayout,
layout: MonoTab.RootLayout,
permalink: "/"
use Phoenix.Component
def template(assigns) do
~H"""
<section>
<h2>Welcome to Llmex Blog</h2>
<h2>Welcome</h2>
<p>
A simple blog built with Elixir, Phoenix LiveView, and Tableau static site generator.
Explore our latest posts and insights on functional programming, web development, and more.
</p>
</section>
"""

View File

@@ -1,7 +1,8 @@
defmodule Llmex.Pages.Posts do
defmodule MonoTab.Pages.Posts do
use Tableau.Page,
layout: Llmex.IndexLayout,
layout: MonoTab.IndexLayout,
permalink: "/posts"
use Phoenix.Component
def template(assigns) do