add attribution page

This commit is contained in:
2026-01-22 19:15:05 -08:00
parent aeb028d0fe
commit 2abe5bedcd
3 changed files with 72 additions and 0 deletions

View File

@ -82,6 +82,7 @@ const footerHTML = `
<a href="mailto:beall.greenhouses@gmail.com">email us!</a> <a href="mailto:beall.greenhouses@gmail.com">email us!</a>
</p> </p>
<p>brought to you in 2026</p> <p>brought to you in 2026</p>
<p><a href="/attribution">site attribution</a></p>
` `
const populateFooter = function() { const populateFooter = function() {

View File

@ -112,6 +112,14 @@ footer {
width: 95%; width: 95%;
margin: 0 auto; margin: 0 auto;
padding: 1rem 0; padding: 1rem 0;
display: flex;
justify-content: center;
}
@media (max-width: 750px) {
footer {
flex-flow: column;
}
} }
footer p { footer p {
@ -122,6 +130,15 @@ footer p {
padding: .25rem; padding: .25rem;
} }
@media (min-width: 751px) {
footer p:nth-child(2)::before {
content: "● " / "";
}
footer p:nth-child(2)::after {
content: " ●" / "";
}
}
footer a { footer a {
color: var(--color-bg); color: var(--color-bg);
text-decoration-color: var(--color-accent-flipped); text-decoration-color: var(--color-accent-flipped);

54
attribution/index.html Normal file
View File

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Site attribution | the historic Beall Greenhouses</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Meta -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="canonical" href="/attribution/" />
<meta name="description" content="Site attribution | the historic Beall Greenhouses" />
<meta name="robots" content="index,follow" />
<meta property="og:title" content="Site attribution | the historic Beall Greenhouses" />
<meta property="og:type" content="article" />
<meta property="og:url" content="/attribution/" />
<meta property="og:description" content="Site attribution | the historic Beall Greenhouses" />
<meta property="og:image" content="/assets/img/logo.jpg" />
<meta property="og:image:alt" content="block print in black and orange of a rufous hummingbird in flight with tail flared. the hummingbird holds a banner that reads 'become ungovernable.'" />
<!-- JS -->
<script src="/assets/scripts/nav.js" defer></script>
<!-- CSS -->
<link rel="stylesheet" href="/assets/styles/main.css">
<link rel="stylesheet" href="/assets/styles/nav.css">
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bellota:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<div id="content">
<header><!-- auto-populated by nav.js --></header>
<main id="main">
<h1>Attribution</h1>
<div class="no-header">
<p>This website is created and maintained by
<a href="https://leecat.art" target="_blank">Lee Cattarin</a>.
Markets at the Beall Greenhouses are coordinated by
<a href="/artists/hawke">Jennifer Hawke</a>.
</p>
<p>
Much thanks to all the participating artists, both
<a href="/artists">artists in residence</a>
and market artists.
</p>
</div>
</main>
</div>
<footer id="footer"><!-- auto-populated by nav.js --></footer>
</body>
</html>