/
Alex_Ural
/
PythonDataScienceHandbook
Обзор
Документация
Войти
/
Alex_Ural
/
PythonDataScienceHandbook
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
website/theme/templates/page.html
22 строки
606 B
Jake VanderPlas
add website framework
15 авг 2017, 19:14
15 авг 2017, 19:14
12a9c39
Код
Авторство
О чём код?
{% extends "base.html" %} {% block title %}{{ page.title }}{% endblock %} {% block headerimg %}{% if page.headerimg %}{{ page.headerimg }}{% else %}{{ DEFAULT_HEADER_BG }}{% endif %}{% endblock %} {% block content %} <div class="container post"> <article> <header> <h1>{{ page.title }}</h1> {% if page.date %} <time datetime="page.date.isoformat()" pubdate>{{ page.locale_date }}</time> {% endif %} </header> <div class="article_content"> {{ page.content }} </div> </article> </div> {% endblock %}