Browse Source

More fiddleing (I just can't stop myself)

devel
Jean 9 months ago
parent
commit
be110f3fe8
Signed by: easthighNerd <jean@easthighnerd.net> GPG Key ID: F4B3EACD21AEFFF4
2 changed files with 58 additions and 10 deletions
  1. +27
    -3
      podcast/feed/index.html
  2. +31
    -7
      podcast/index.html

+ 27
- 3
podcast/feed/index.html View File

@@ -4,12 +4,36 @@
<title>
Feed - easthighNerd Cast
</title>
<link href="/res/css/main.css" rel="stylesheet">
<link rel="icon" type="image/png" href="/res/img/favicon.png"/>
<meta http-equiv="refresh" type="application/rss+xml" target="_self" content="0; URL=./feed.rss" />
<link rel="alternate" type="application/rss+xml" title="Subscribe to the easthighNerd Cast" href="https://www.easthighnerd.net/podcast/feed/feed.rss" />
<style>
body {
background-color: black;
color: white;
font-family: monospace;
font-size: 20pt;
margin: 2%;
}

a {
text-decoration: none;
color: yellow;
}

a:hover {
color: cyan;
transition: color 0.5s ease;
}

main {
position: relative;
text-align: center;
}
</style>
</head>
<body>
<a title="ogg feed" href="./feed.rss">ogg feed</a>
<main>
<a title="ogg feed" href="./feed.rss">feed.rss</a>
</main>
</body>
</html>

+ 31
- 7
podcast/index.html View File

@@ -2,16 +2,40 @@
<head>
<meta charset="utf-8">
<title>
Feed - easthighNerd Cast
Podcast - easthighNerd
</title>
<link href="/res/css/main.css" rel="stylesheet">
<link rel="icon" type="image/png" href="/res/img/favicon.png"/>
<link rel="alternate" type="application/rss+xml" title="Subscribe to the easthighNerd Cast" href="https://www.easthighnerd.net/podcast/feed/feed.rss" />
<style>
body {
background-color: black;
color: white;
font-family: monospace;
font-size: 20pt;
margin: 2%;
}

a {
text-decoration: none;
color: yellow;
}

a:hover {
color: cyan;
transition: color 0.5s ease;
}

main {
position: relative;
text-align: center;
}
</style>
</head>
<body>
<img src="/res/img/podcast.jpg" style="width:256pt;height:256pt;border-radius:50%;margin-left:36%;margin-right:auto;">
<br>
<br>
<a title="Subscribe to the podcast" href="./feed/" style="margin-left:34%;margin-right:auto;">Subscribe to the podcast</a>
<main>
<img src="/res/img/podcast.jpg" style="width:256pt;height:256pt;border-radius:50%;">
<br>
<br>
<a title="Subscribe to the podcast" href="./feed/">Subscribe to the podcast</a>
</main>
</body>
</html>

Loading…
Cancel
Save