phryk
a1a2cde38a
* All menus have IDs now * Added support for burgerized menus; burgerized main menu and minisearch * Fixed menu in Listing objects * Fixed issue with invalid datetime-local values * Improved section breakout logic for inline renderables in markdown * Search now ignores abstract content types * Added some assets * Various other things, mostly theming-related
11 lines
236 B
HTML
11 lines
236 B
HTML
{% extends 'default/templates/renderable/renderable.html' %}
|
|
|
|
{% block content %}
|
|
|
|
{% if content.page and content.offset == 0 %}
|
|
{{ content.page.render() }}
|
|
{% endif %}
|
|
|
|
{{ content.results.render() }}
|
|
{% endblock %}
|