- Generate Rails 8.1 app with PostgreSQL and TailwindCSS - Add docker-compose.yml (postgres:17) for local database - Configure database.yml to connect to Dockerized Postgres via env vars - Add Pages#home root route, application layout, and navbar partial
14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<style>
|
|
/* Email styles need to be inline */
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|