diff options
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/footer.html | 5 | ||||
| -rw-r--r-- | _includes/head.html | 12 | ||||
| -rw-r--r-- | _includes/header.html | 3 | ||||
| -rw-r--r-- | _includes/nav.html | 8 | ||||
| -rw-r--r-- | _includes/social-links.html | 12 |
5 files changed, 40 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..127167c --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,5 @@ + <footer> + <small>© Ben Sanders, 2025</small> + </footer> + <!-- <script src="./index.js"></script> --> + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..7d13b36 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,12 @@ +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta content="Ben's Corner of the Web" property="og:title"> + <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> + <meta content="https://ben.sanders.life" property="og:url"> + <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> + <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + <link rel="stylesheet" href="/main.css"> + <title>Ben's Website</title> +</head>
\ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..afae994 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,3 @@ +<!DOCTYPE html> +<html lang="en"> +{% include head.html %} diff --git a/_includes/nav.html b/_includes/nav.html new file mode 100644 index 0000000..cc297e4 --- /dev/null +++ b/_includes/nav.html @@ -0,0 +1,8 @@ + <ul class="navigation"> + <li><a href="/" title="home">~/</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> + </ul> + diff --git a/_includes/social-links.html b/_includes/social-links.html new file mode 100644 index 0000000..2de8d66 --- /dev/null +++ b/_includes/social-links.html @@ -0,0 +1,12 @@ + <div class="home-social-links"> + <a href="https://www.linkedin.com/in/benasanders" target="_blank" title="Ben Sanders on Linkedin">[LinkedIn]</a> + <a href="https://twitter.com/thebensanders" target="_blank" title="@TheBenSanders on Twitter">[Twitter]</a> + <a rel="me" href="https://sanders.life/@ben" target="_blank" title="@ben@sanders.life on Mastodon">[Mastodon]</a> + <a href="https://github.com/bensanders" target="_blank" title="Ben on Github">[GitHub]</a> + <a href="https://gitlab.com/bensanders" target="_blank" title="Ben on Gitlab">[GiLab]</i></a> + <a href="https://public.com/@thebensanders" target="_blank" title="Ben on Public">[Public (Investing)]</i></a> + <a href="https://ben.sanders.life/feed.xml" target="_blank" title="Subscribe with RSS">[RSS Feed]</a> + <a href="mailto:ben@sanders.life" title="Email Me">[Email Me]</a> + <a href="/pgp-keys/ben-sanders-life-C0B37514.asc" title="PGP Key for ben@sanders.life">[PGP Key]</a> + </div> + |
