blog/backend/templates/web/index.html

15 lines
444 B
HTML
Raw Normal View History

2023-02-11 11:48:39 +00:00
{% extends "base.html" %}
{% block title %}index{% endblock %}
{% block head %}{% endblock %}
{% block breadcrumb %}{% endblock %}
{% block content %}
<h1>This is my site</h1>
<p>Hey, I'm Dominic (aka. dergrimm) and this is my blog!</p>
<p>I mostly plan to talk about modern tech and server side stuff like Rust, Crystal, C, databases and APIs.</p>
2023-02-12 08:18:56 +00:00
<p>Keep posted by following my (not yet existing) feed.</p>
2023-02-11 11:48:39 +00:00
{% endblock %}