diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-11-27 10:59:13 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-11-27 10:59:13 -0500 |
commit | 6a1f7d58a1e733159ca4079782376592b575a68c (patch) | |
tree | 5847eb3ece893d5f72f6d7885786b13545ea9864 /software.html | |
parent | 0d26219384c908999fbfa942c30e10d44c487899 (diff) | |
download | 53hor-6a1f7d58a1e733159ca4079782376592b575a68c.tar.xz 53hor-6a1f7d58a1e733159ca4079782376592b575a68c.zip |
fixed style and prettier errors
Diffstat (limited to 'software.html')
-rw-r--r-- | software.html | 93 |
1 files changed, 85 insertions, 8 deletions
diff --git a/software.html b/software.html index af0d66d..ef37131 100644 --- a/software.html +++ b/software.html @@ -1,10 +1,87 @@ -You can find my source code repositories here: -<a href="https://git.53hor.net">Gitea</a> -I also exist on the following repository sites but don't really use them. +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" href="/includes/stylesheet.css" /> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta + property="og:description" + content="The World Wide Web pages of Adam Carpenter" + /> + <meta property="og:image" content="/includes/images/logo_diag.png" /> + <meta property="og:site_name" content="53hor.net" /> + <meta property="og:title" content="Software" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://www.53hor.net" /> + <title>53hornet ➙ Software</title> + </head> -<ul> - <li><a href="https://github.com/53hornet">GitHub</a></li> - <li><a href="https://gitlab.com/53hornet">GitLab</a></li> -</ul> + <body> + <nav> + <ul> + <li> + <a href="/"> + <img src="/includes/icons/home-roof.svg" /> + Home + </a> + </li> + <li> + <a href="/about.html"> + <img src="/includes/icons/information-variant.svg" /> + About + </a> + </li> + <li> + <a href="/software.html"> + <img src="/includes/icons/git.svg" /> + Software + </a> + </li> + <li> + <a href="/hosted.html"> + <img src="/includes/icons/desktop-tower.svg" /> + Hosted + </a> + </li> + <li> + <a type="application/rss+xml" href="/rss.xml"> + <img src="/includes/icons/rss.svg" /> + RSS + </a> + </li> + <li> + <a href="/contact.html"> + <img src="/includes/icons/at.svg" /> + Contact + </a> + </li> + </ul> + </nav> -If you were looking to contact me, see <a href="/contact.html">Contact</a>. + <article> + <h1>Software</h1> + + <h2><a href="https://git.53hor.net">Gitea</a></h2> + You can find my source code repositories here. This is where all of my + publicly-available code lives. I put personal and professional projects up + here, as well as learning exercises, forks, and dotfiles. + + <h2><a href="https://github.com/53hornet">GitHub</a></h2> + <p> + I don't use GitHub for my software, only really for issue tracking or + following other projects. Sometimes I'll open PRs on GitHub but that's + about it. + </p> + <h2><a href="https://gitlab.com/53hornet">GitLab</a></h2> + <p> + I don't use GitLab anymore. I used to until I self-hosted, so there may + or may not be some stale mirrors of my stuff on there. + </p> + + <p> + If you were looking to contact me, see + <a href="/contact.html">Contact</a>. + </p> + </article> + </body> +</html> |