changes to templates to match what I'm going for

This commit is contained in:
Pagwin 2024-10-22 01:15:33 -04:00
parent f5c239673a
commit c88146cd41
No known key found for this signature in database
GPG key ID: 81137023740CA260
2 changed files with 7 additions and 5 deletions

View file

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -7,17 +8,19 @@
<link rel="stylesheet" type="text/css" href="/static/css/default.css" /> <link rel="stylesheet" type="text/css" href="/static/css/default.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://pagwin.xyz/index.xml"> <link rel="alternate" type="application/rss+xml" title="RSS" href="https://pagwin.xyz/index.xml">
</head> </head>
<body class="dark"> <body class="dark">
<div id="header"> <div id="header">
<a class="nav-link" href="/">Home</a> <a class="nav-link" href="/">Home</a>
<a class="nav-link" href="/blog">Blog Posts</a> <a class="nav-link" href="/posts/">Blog Posts</a>
<a class="nav-link" href="/links/">Links</a> <a class="nav-link" href="/links/">Links</a>
</div> </div>
<div id="content"> <div id="content">
<h1>{{{title}}}</h1> <h1 style="font-variant: small-caps;padding-left:40%; padding-right:20%;">{{{title}}}</h1>
{{{content}}} {{{content}}}
</div> </div>
<div id="footer"> <div id="footer">
</div> </div>
</body> </body>
</html> </html>

View file

@ -1,5 +1,4 @@
<h2>Welcome</h2> <h2>Hi there, I'm Pagwin</h2>
<p>Welcome to my blog!</p> <p>I post here sometimes</p>
<p>My recent posts here for your reading pleasure:</p>
<h2>Posts</h2> <h2>Posts</h2>
{{> templates/post-list.html }} {{> templates/post-list.html }}