mirror of
https://github.com/kirsle/kirsle.net
synced 2024-11-14 04:49:29 +00:00
14 lines
351 B
HTML
14 lines
351 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Welcome!{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>Welcome!</h1>
|
|
|
|
Welcome to <a href="http://www.kirsle.net/">Kirsle.net</a>! This is the personal
|
|
website of Noah Petherbridge, and it's where my various software projects and
|
|
web blog lives.<p>
|
|
|
|
{{ include_page("blog.partial_index") | safe }}
|
|
|
|
{% endblock %}
|