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/*.html
/public/*.xml /public/*.xml

View File

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

View File

@ -1,3 +1,6 @@
#!/bin/sh -e #!/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"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>small and nearly silent</title> <title>small and nearly silent</title>
<link rel="stylesheet" href="sans.css"> <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> </head>
<body> <body>
<div class="container"> <div class="container">
@ -18,4 +19,4 @@
</main> </main>
</div> </div>
</body> </body>
</html> </html>