10 lines
230 B
HTML
10 lines
230 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %} {{ title }} {% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="jumbotron">
|
|
<h1 class="display-6">My first post!</h1>
|
|
<p class="lead">{{message}}</p>
|
|
</div>
|
|
{% endblock content %} |