This commit is contained in:
eli 2022-09-04 13:11:55 -04:00
parent d9cbaf2fcc
commit 44e0766293
4 changed files with 10 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
ni
/public/*.html
/public/*.xml

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>small and nearly silent</title>
<link rel="alternate" href="https://smallandnearlysilent.com"/>
<link rel="alternate" href="https://smallandnearlysilent.com/"/>
<author>
<name>sans folks</name>
</author>

View File

@ -1,3 +1,6 @@
#!/bin/sh -e
ni src/ public/ template.html atom-template.xml smallandnearlysilent.com
ni src/ public/ template.html atom-template.xml smallandnearlysilent.com/
## NOTE: be sure to include the trailing / in the URL.
## it is needed to make the atom-template.xml work.

View File

@ -2,9 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>small and nearly silent</title>
<link rel="stylesheet" href="sans.css">
<link rel="alternate" type="application/atom+xml" href="https://smallandnearlysilent.com/feed.xml" />
<link rel="alternate" type="application/atom+xml" href="https://smallandnearlysilent.com/atom.xml" />
</head>
<body>
<div class="container">
@ -18,4 +19,4 @@
</main>
</div>
</body>
</html>
</html>