Add index title and tagline to .env

This commit is contained in:
Raven Scott 2024-09-26 02:44:16 -04:00
parent 815cbc034a
commit 17fec0a2b1

View File

@ -33,8 +33,8 @@
<header class="py-5">
<div class="container text-center">
<h1>Hello, my name is <%= process.env.OWNER_NAME %></h1>
<p class="lead">Where Technology Meets Creativity: Insights from a Linux Enthusiast</p>
<h1><%= process.env.FRONT_PAGE_TITLE %></h1>
<p class="lead"><%= process.env.FRONT_PAGE_LEAD %></p>
<form action="/" method="get" class="mb-4">
<div class="input-group">
<input type="text" name="search" class="form-control" placeholder="Search blog posts...enter to submit..." value="<%= typeof searchQuery !== 'undefined' ? searchQuery : '' %>">