add banner to top of all old website pages
This commit is contained in:
69
content/files/old/index.html
Normal file
69
content/files/old/index.html
Normal file
@@ -0,0 +1,69 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Archived Websites - erictaylor.me</title>
|
||||
<link rel="stylesheet" href="archive-banner.css">
|
||||
<style>
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 20px 40px;
|
||||
color: #333;
|
||||
background: #fafafa;
|
||||
}
|
||||
h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
|
||||
p.subtitle { color: #666; margin-top: 0; }
|
||||
ul { list-style: none; padding: 0; }
|
||||
li {
|
||||
margin: 12px 0;
|
||||
padding: 16px;
|
||||
background: #fff;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 6px;
|
||||
}
|
||||
li a { font-size: 1.1rem; font-weight: 600; color: #2a6496; text-decoration: none; }
|
||||
li a:hover { text-decoration: underline; }
|
||||
li .desc { color: #888; font-size: 0.9rem; margin-top: 4px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- ARCHIVE-BANNER -->
|
||||
<link rel="stylesheet" href="archive-banner.css">
|
||||
<div class="archive-banner">
|
||||
This is an archived website. <a href="http://erictaylor.me">Return to erictaylor.me</a>
|
||||
<button class="archive-banner-close" onclick="this.parentElement.style.display='none'">×</button>
|
||||
</div>
|
||||
<!-- /ARCHIVE-BANNER -->
|
||||
|
||||
<div class="archive-banner">
|
||||
This is an archived website directory. <a href="http://erictaylor.me">Return to erictaylor.me</a>
|
||||
<button class="archive-banner-close" onclick="this.parentElement.style.display='none'">×</button>
|
||||
</div>
|
||||
|
||||
<h1>Archived Websites</h1>
|
||||
<p class="subtitle">These are previous versions of websites that have been preserved for archival purposes.</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="gvp/">Grand View Photography</a>
|
||||
<div class="desc">Photography portfolio site featuring weddings, portraits, and event photography.</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="sds_v3/">Silver Dragon Studios v3</a>
|
||||
<div class="desc">Early personal site with artwork, photos, and wallpapers.</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="sds_v4/">Silver Dragon Studios v4</a>
|
||||
<div class="desc">Redesigned personal site with tutorials, artwork gallery, and photo collections.</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="sds_v5/">Silver Dragon Studios v5</a>
|
||||
<div class="desc">Later version with blog, portfolio, and expanded photo galleries.</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user