18 lines
No EOL
441 B
HTML
18 lines
No EOL
441 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<title>Eli's Blog | {{ page.title }}</title>
|
|
<link rel="stylesheet" href="{{get_url(path="css/blog.css")}}">
|
|
<link rel="stylesheet" href="{{ get_url(path="css/eli-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 %} |