knazarov.com/bin/page.sh

57 lines
961 B
Bash
Raw Normal View History

2021-08-08 09:37:53 +00:00
#!/bin/bash
expand() {
TITLE="$1"
cat <<-"EOF"
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-08-15 20:11:40 +00:00
<link rel="stylesheet" type="text/css" href="/style.css">
2021-08-08 09:37:53 +00:00
<title>
EOF
echo " $TITLE"
cat <<-"EOF"
</title>
2021-09-12 16:26:29 +00:00
<link rel="alternate" type="application/rss+xml"
title="RSS Feed for knazarov.com" href="/rss.xml" />
2021-08-08 09:37:53 +00:00
</head>
<body>
<div id="header">
<a href="/">Konstantin Nazarov</a>
</div>
<div id="menu">
<a href="/">home</a>
2021-08-15 20:11:40 +00:00
<a href="/posts">posts</a>
<a href="/projects">projects</a>
<a href="/about">about</a>
<a href="/contact">contact</a>
2021-08-08 09:37:53 +00:00
</div>
2021-08-21 21:48:36 +00:00
<div id="content">
2021-08-08 09:37:53 +00:00
EOF
cat
cat <<-"EOF"
2021-08-21 21:48:36 +00:00
</div>
2021-08-08 09:37:53 +00:00
</body>
</html>
EOF
}
if [ -z "$1" ]; then
echo "Missing page title"
exit 1
fi
if [ -z "$2" ] && [ -t 0 ]; then
echo "Missing page body"
exit 1
fi
if [ ! -t 0 ]; then
expand "$1"
exit 0
fi
expand "$1" < "$2"