Fix index structure

master
Tait Hoyem 4 years ago
parent b9b4b7e57f
commit c21dc0fffa

File diff suppressed because one or more lines are too long

@ -1 +1 @@
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Home | tait.tech</title> <link rel="stylesheet" href="/assets/css/style.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="Tait Hoyem"> <meta name="keywords" content="UNIX Design, Tait Hoyem, security, privacy, software developer, Calgary, Alberta, Canada, independent, web developer"> <meta name="description" content="Tait Hoyem's website. The home of accessible, simple and secure computing."> </head> <body> <div id="wrapper"> <header> <nav> <input type="checkbox" id="menu"> <label for="menu">&#9776;</label> <div class="menu-content"> <a href="/" class="nav-link" class="on-page">Home</a> <a href="/blog/" class="nav-link">Blog</a> <a href="/links/" class="nav-link">Links</a> <a href="https://github.com/TTWNO/" class="nav-link" target="_blank" rel="noopener noreferrer">Code</a> </div> </nav> </header> <main> <section> <h1>Tait Hoyem</h1> <p>I have three goals in my software development career:</p> <ol> <li>Strong adherence to the <a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html">UNIX principles</a> of software design.</li> <li>Security, privacy, and anonymity of the internet.</li> <li>Accessibility of technology to the visually impaired.</li> </ol> <p>Some of my projects reflect these goals; others are just fun along the way. I have all of my code projects hosted on <a href="https://github.com/TTWNO">my Github</a>.</p> </section> <section> <h2>Projects</h2> <p>Here is some of my best work:</p> <ul class="clear-list projects"> <li> <p> <a href="https://github.com/TTWNO/epub-with-pinyin">epub-with-pinyin</a> &mdash; A program to add Pinyin above Chinese characters in .epub files to assist those learning Mandarin Chinese. </p> </li> <li> <p> <a href="https://github.com/TTWNO/chess">chess</a> &mdash; A command-line chess game in C++. It is compileable on almost any system. </p> </li> <li> <p> <a href="https://github.com/TTWNO/tait.tech">tait.tech</a> &mdash; All the code for my website is open source. </p> </li> <li> <p> <a href="https://github.com/TTWNO/lamegames.io">lamegames</a> &mdash; A little games website I made for some demonstrations of Django functionality. Very, very lame. Would not recommend. </p> </li> <li> <p> <a href="https://github.com/TTWNO/subnetting">subnetting</a> &mdash; One-night write of a subnet calculation tool. </p> </li> </ul> <p>I also occasionally put some content on <a href="/blog">my blog</a></p> </section> <section> <h2>Contact</h2> <address> <p>You can reach me via email at <a href="mailto:tait@tait.tech">tait@tait.tech</a>.</p> </address> <p>If you use PGP, download my <a href="/public-key.asc">public key</a>.</p> </section> </main> <hr> <footer> This page is mirrored on <a href="https://beta.tait.tech/">beta.tait.tech</a>. </footer> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Home | tait.tech</title> <link rel="stylesheet" href="/assets/css/style.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="Tait Hoyem"> <meta name="keywords" content="UNIX Design, Tait Hoyem, security, privacy, software developer, Calgary, Alberta, Canada, independent, web developer"> <meta name="description" content="Tait Hoyem's website. The home of accessible, simple and secure computing."> </head> <body> <div id="wrapper"> <header> <nav> <input type="checkbox" id="menu"> <label for="menu">&#9776;</label> <div class="menu-content"> <a href="/" class="nav-link" class="on-page">Home</a> <a href="/blog/" class="nav-link">Blog</a> <a href="/links/" class="nav-link">Links</a> <a href="https://github.com/TTWNO/" class="nav-link" target="_blank" rel="noopener noreferrer">Code</a> </div> </nav> </header> <main> <h1>Tait Hoyem</h1> <p>I have three goals in my software development career:</p> <ol> <li>Strong adherence to the <a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html">UNIX principles</a> of software design.</li> <li>Security, privacy, and anonymity of the internet.</li> <li>Accessibility of technology to the visually impaired.</li> </ol> <p>Some of my projects reflect these goals; others are just fun along the way. I have all of my code projects hosted on <a href="https://github.com/TTWNO">my Github</a>.</p> <h2>Projects</h2> <p>Here is some of my best work:</p> <ul class="clear-list projects"> <li> <p> <a href="https://github.com/TTWNO/epub-with-pinyin">epub-with-pinyin</a> &mdash; A program to add Pinyin above Chinese characters in .epub files to assist those learning Mandarin Chinese. </p> </li> <li> <p> <a href="https://github.com/TTWNO/chess">chess</a> &mdash; A command-line chess game in C++. It is compileable on almost any system. </p> </li> <li> <p> <a href="https://github.com/TTWNO/tait.tech">tait.tech</a> &mdash; All the code for my website is open source. </p> </li> <li> <p> <a href="https://github.com/TTWNO/lamegames.io">lamegames</a> &mdash; A little games website I made for some demonstrations of Django functionality. Very, very lame. Would not recommend. </p> </li> <li> <p> <a href="https://github.com/TTWNO/subnetting">subnetting</a> &mdash; One-night write of a subnet calculation tool. </p> </li> </ul> <p>I also occasionally put some content on <a href="/blog">my blog</a></p> <h2>Contact</h2> <address> <p>You can reach me via email at <a href="mailto:tait@tait.tech">tait@tait.tech</a>.</p> </address> <p>If you use PGP, download my <a href="/public-key.asc">public key</a>.</p> </main> <hr> <footer> This page is mirrored on <a href="https://beta.tait.tech/">beta.tait.tech</a>. </footer> </div> </body> </html>

@ -5,43 +5,37 @@ keywords: "UNIX Design, Tait Hoyem, security, privacy, software developer, Calga
description: "Tait Hoyem's website. The home of accessible, simple and secure computing."
---
<section>
<h1>Tait Hoyem</h1>
<p>I have three goals in my software development career:</p>
<ol>
<li>Strong adherence to the <a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html">UNIX principles</a> of software design.</li>
<li>Security, privacy, and anonymity of the internet.</li>
<li>Accessibility of technology to the visually impaired.</li>
</ol>
<p>Some of my projects reflect these goals;
others are just fun along the way.
I have all of my code projects hosted on <a href="https://github.com/TTWNO">my Github</a>.</p>
</section>
<section>
<h2>Projects</h2>
<p>Here is some of my best work:</p>
<ul class="clear-list projects">
{% for project in site.data.projects %}
<li>
<p>
<a href="{{ project.link }}">{{ project.name }}</a> &mdash; {{ project.description }}
</p>
</li>
{% endfor %}
</ul>
<p>I also occasionally put some content on <a href="/blog">my blog</a></p>
</section>
<section>
<h2>Contact</h2>
<address>
<p>You can reach me via email at <a href="mailto:tait@tait.tech">tait@tait.tech</a>.</p>
</address>
<p>If you use PGP, download my <a href="/public-key.asc">public key</a>.</p>
</section>
<h1>Tait Hoyem</h1>
<p>I have three goals in my software development career:</p>
<ol>
<li>Strong adherence to the <a href="http://www.catb.org/~esr/writings/taoup/html/ch01s06.html">UNIX principles</a> of software design.</li>
<li>Security, privacy, and anonymity of the internet.</li>
<li>Accessibility of technology to the visually impaired.</li>
</ol>
<p>Some of my projects reflect these goals;
others are just fun along the way.
I have all of my code projects hosted on <a href="https://github.com/TTWNO">my Github</a>.</p>
<h2>Projects</h2>
<p>Here is some of my best work:</p>
<ul class="clear-list projects">
{% for project in site.data.projects %}
<li>
<p>
<a href="{{ project.link }}">{{ project.name }}</a> &mdash; {{ project.description }}
</p>
</li>
{% endfor %}
</ul>
<p>I also occasionally put some content on <a href="/blog">my blog</a></p>
<h2>Contact</h2>
<address>
<p>You can reach me via email at <a href="mailto:tait@tait.tech">tait@tait.tech</a>.</p>
</address>
<p>If you use PGP, download my <a href="/public-key.asc">public key</a>.</p>

Loading…
Cancel
Save