mirror of
https://github.com/kennethreitz/curated-nodes.git
synced 2026-06-05 23:20:20 +00:00
15 lines
238 B
HTML
15 lines
238 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ page.title }} — kennethreitz.org
|
|
{% endblock %}
|
|
|
|
{% block heading %}
|
|
<h1>{{ page.title }}</h1>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
{{ page.content|markdown }}
|
|
|
|
{% endblock %} |