diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-07-30 04:15:05 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-07-30 04:15:05 +0200 |
commit | 5b4d4b3400acdace76f5970849fcb7f9cefd2c4d (patch) | |
tree | aba62cb24bee0f6e81434602571791b1945a78fb /src/index.html |
Genesis commit
Not ready for release yet, but I need some commits for M4 to work
properly.
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..cbbbf20 --- /dev/null +++ b/src/index.html @@ -0,0 +1,62 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + m4_include(head.html) + </head> + <body> + <header> + <h1>Root Page</h1> + + <figure class="quote"> + <blockquote> + <p>If Java had true garbage collection, most programs would + delete themselves upon execution.</p> + </blockquote> + <figcaption> + Robert Sewell + </figcaption> + </figure> + </header> + + <main> + <p> + Welcome to my plot of the internet. This site is mostly oriented + towards topics related to software development, but you might + eventually find some things that are completely unrelated as + well. The “source code” for the site (if you can call + <abbr class="html">HTML</abbr><x-ref>1</x-ref> and a basic build + system source code) + <a href="https://git.thomasvoss.com/www.thomasvoss.com" + target="_blank"> + are available through git + </a>. + </p> + + <aside> + <p data-ref="1"> + This site doesn’t even have any JavaScript. + There truly is no code. + </p> + </aside> + + <p> + Now go branch off to a subsection of the site: + </p> + + <ul> + <li><a href="prj">My Projects</a></li> + <li><a href="srp">Software-Related Posts</a></li> + <li><a href="www">Other Websites</a></li> + <li><a href="ame">About Me</a></li> + </ul> + </main> + + <hr> + + <footer> + <small> + Page last edited: 30th July 2023, 01:00 CEST + </small> + </footer> + </body> +</html> |