summaryrefslogtreecommitdiff
path: root/docs/src/components/ArticleFooter.astro
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-07-15 14:13:35 -0400
committerGravatar GitHub <noreply@github.com> 2021-07-15 14:13:35 -0400
commit166e22bdf35b9751dc42f5cc6cb27a99b077df93 (patch)
treee8643360c2250dda82ebf95b62281978547d5188 /docs/src/components/ArticleFooter.astro
parentfb8bf7ec43f7b09348c12d5ff9f81131c70ef5e9 (diff)
downloadastro-166e22bdf35b9751dc42f5cc6cb27a99b077df93.tar.gz
astro-166e22bdf35b9751dc42f5cc6cb27a99b077df93.tar.zst
astro-166e22bdf35b9751dc42f5cc6cb27a99b077df93.zip
merge in docs site (#705)
Diffstat (limited to 'docs/src/components/ArticleFooter.astro')
-rw-r--r--docs/src/components/ArticleFooter.astro16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/src/components/ArticleFooter.astro b/docs/src/components/ArticleFooter.astro
new file mode 100644
index 000000000..48de51054
--- /dev/null
+++ b/docs/src/components/ArticleFooter.astro
@@ -0,0 +1,16 @@
+---
+import AvatarList from './AvatarList.astro';
+const { path } = Astro.props;
+---
+
+<footer>
+ <AvatarList path={path} />
+</footer>
+
+<style>
+footer {
+ margin-top: auto;
+ padding: 2rem 0;
+ border-top: 3px solid var(--theme-divider);
+}
+</style>