17 lines
No EOL
444 B
HTML
17 lines
No EOL
444 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<title>Jade's Blog | {{page.title}}</title>
|
|
<link rel="stylesheet" href="{{get_url(path="css/blog.css")}}">
|
|
<link rel="stylesheet" href="{{ get_url(path="css/jade-style.css") }}">
|
|
{%endblock head %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<p class="subtitle"><strong>{{ page.date }}</strong></p>
|
|
<p class="blog post">
|
|
{{ page.content | safe }}
|
|
</p>
|
|
{% endblock content %} |