better readme, add css
This commit is contained in:
parent
bbbb4e191e
commit
30b5074abb
|
@ -14,9 +14,13 @@ This could be improved but keeping it simple for now.
|
||||||
This program requires ffmpeg and exiftool to be installed. It works under Linux
|
This program requires ffmpeg and exiftool to be installed. It works under Linux
|
||||||
and MacOS.
|
and MacOS.
|
||||||
|
|
||||||
copy env.example to .env and modify it as needed. Navigate to directory in
|
Navigate to directory in the shell. Copy env.example to .env and modify it as needed.
|
||||||
shell.
|
shell.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
cp env.example .env
|
||||||
|
```
|
||||||
|
|
||||||
Create a "public_html" directory, or change .env to point to where you want the
|
Create a "public_html" directory, or change .env to point to where you want the
|
||||||
files dumped.
|
files dumped.
|
||||||
|
|
||||||
|
|
14
publish.sh
14
publish.sh
|
@ -72,6 +72,20 @@ function generate_html() {
|
||||||
<title>${ESCAPED_PODCAST_NAME}</title>
|
<title>${ESCAPED_PODCAST_NAME}</title>
|
||||||
<link rel="alternate" type="application/rss+xml" title="Audio Podcast" href="${PODCAST_WEBROOT}mp3.rss.xml"/>
|
<link rel="alternate" type="application/rss+xml" title="Audio Podcast" href="${PODCAST_WEBROOT}mp3.rss.xml"/>
|
||||||
<link rel="alternate" type="application/rss+xml" title="Video Podcast" href="${PODCAST_WEBROOT}mp4.rss.xml"/>
|
<link rel="alternate" type="application/rss+xml" title="Video Podcast" href="${PODCAST_WEBROOT}mp4.rss.xml"/>
|
||||||
|
<style>
|
||||||
|
html {
|
||||||
|
background-color: #3b3b3b;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #00d5df;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #df00bb;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>${ESCAPED_PODCAST_NAME}</h1>
|
<h1>${ESCAPED_PODCAST_NAME}</h1>
|
||||||
|
|
Loading…
Reference in New Issue