pdnew/themes/default/templates/renderable/frontpage.html
phryk a1a2cde38a A boatload of changes, fixes, improvements and theming work.
* 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
2024-10-14 16:54:17 +02:00

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 %}