remove relative url for css assets

This commit is contained in:
2025-07-26 14:39:46 -04:00
parent da2b1f576d
commit 7c3ca2f847
5 changed files with 10 additions and 10 deletions

View File

@@ -9,8 +9,8 @@
Test Post: Getting Started with Elixir | MonoTab Blog
</title>
<link rel="stylesheet" href="./css/mono.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="stylesheet" href="/css/mono.css">
<link rel="stylesheet" href="/css/responsive.css">
<meta name="description" content="A simple blog built with Elixir and Tableau">
</head>

View File

@@ -9,8 +9,8 @@
MonoTab Blog
</title>
<link rel="stylesheet" href="./css/mono.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="stylesheet" href="/css/mono.css">
<link rel="stylesheet" href="/css/responsive.css">
<meta name="description" content="A simple blog built with Elixir and Tableau">
</head>

View File

@@ -9,8 +9,8 @@
MonoTab Blog
</title>
<link rel="stylesheet" href="./css/mono.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="stylesheet" href="/css/mono.css">
<link rel="stylesheet" href="/css/responsive.css">
<meta name="description" content="A simple blog built with Elixir and Tableau">
</head>

View File

@@ -9,8 +9,8 @@
MonoTab Blog
</title>
<link rel="stylesheet" href="./css/mono.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="stylesheet" href="/css/mono.css">
<link rel="stylesheet" href="/css/responsive.css">
<meta name="description" content="A simple blog built with Elixir and Tableau">
</head>

View File

@@ -18,8 +18,8 @@ defmodule MonoTab.RootLayout do
|> Enum.join(" ")}
</title>
<link rel="stylesheet" href="./css/mono.css" />
<link rel="stylesheet" href="./css/responsive.css" />
<link rel="stylesheet" href="/css/mono.css" />
<link rel="stylesheet" href="/css/responsive.css" />
<meta
name="description"
content={@page[:description] || "A simple blog built with Elixir and Tableau"}