feature: Set up basic layout and styles

This commit is contained in:
Keith Solomon
2025-05-24 12:22:24 -05:00
parent bd7e54d7c7
commit 89c725a282
7 changed files with 475 additions and 58 deletions

View File

@@ -1,12 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<h1 class="text-4xl mb-2"><%= title %></h1>
<hr class="my-4">
<p>Welcome to <%= title %></p>
</body>
</html>
<%- include('header'); -%>
<article class="container mx-auto py-4">
<h2>Welcome to the <%= title %> EJS Template</h2>
<p>This is a simple example of using EJS for templating.</p>
</article>
<%- include('footer'); -%>