42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
{% extends "layout/base.html" %}
|
|
{% block title %}Welcome{% endblock %}
|
|
{% block content %}
|
|
<section class="first">
|
|
<img src="/images/photo.jpg" class="circle center" width="320">
|
|
|
|
<h1>Hello world!</h1>
|
|
|
|
<p>
|
|
This is the personal homepage of <strong>Noah Petherbridge</strong>.
|
|
</p>
|
|
|
|
<p>
|
|
I'm a software developer in California. I write about random stuff on
|
|
my <a href="https://www.kirsle.net/" target="_blank">web blog</a> and
|
|
maintain a handful of open source projects on
|
|
<a href="https://github.com/kirsle" target="_blank">GitHub</a>
|
|
and <a href="https://git.kirsle.net/" target="_blank">git.kirsle.net</a>.
|
|
</p>
|
|
|
|
<h2>Software Development</h2>
|
|
|
|
<p>
|
|
I'm a full stack web developer and I program in Go, Python, and
|
|
JavaScript. One of my largest personal projects is
|
|
<a href="https://www.rivescript.com/" target="_blank">RiveScript</a>,
|
|
a scripting language for programming chat bots — matching a user's
|
|
message to a certain response.
|
|
</p>
|
|
|
|
<p>
|
|
My web blog, <a href="https://www.kirsle.net/" target="_blank">Kirsle.net</a>,
|
|
is written in Go and I keep that source code <a href="https://github.com/kirsle/blog" target="_blank">here</a>
|
|
for now. Previously it was written in
|
|
<a href="https://git.kirsle.net/apps/rophako" target="_blank">Python</a>
|
|
and its <a href="https://git.kirsle.net/kirsle/kirsle.net" target="_blank">HTML pages</a>
|
|
are readable too. The site you're reading is a simple Python-generated
|
|
static site <a href="https://git.kirsle.net/kirsle/noah.is">here</a>.
|
|
</p>
|
|
</section>
|
|
{% endblock %}
|