website/templates/404.html
Chinmay D. Pai 6d929483e2
feat: rewrite blog in zola
Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
2021-05-28 00:10:50 +05:30

8 lines
283 B
HTML

{% extends "index.html" %}
{% block title %}Page not found{% endblock title %}
{% block content %}
Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ config.base_url }}/">Head back home</a> to try finding it again.
{% endblock content %}