{% ckan_extends %}
{# HEAD #}
{% block meta %}
{# IE=edge tells IE8 not to be tempted to use IE7 compatibility/quirks modes.
chrome=IE7 tells IE7 to use the Chrome Frame if available - good for Flex machines.
Should be the first meta tag in the head. #}
{% endblock %}
{#
Add a custom title to the page by extending the title block. Call super()
to get the default page title.
Example:
{% block title %}My Subtitle - {{ super() }}{% endblock %}
#}
{% block title %}Portal OPSI{% endblock %}
{# favicon:
ckan.favicon = /assets/img/favicon.ico
#}
{% block links -%}
{# {{ super() }}#}
{# TODO: feed #}
{% endblock -%}
{%- block styles %}
{# avoided super(): removed main.css included by core ckan base.html #}
{#
#}
{% endblock %}
{% block head_extras %}
{# Python-generated JS values #}
{% block optional_head %}
{% endblock %}
{# HTML5 shim, for IE6-8 support of HTML5 elements #}
{# Those or similar files are loaded by Drupal theme
#}
{% endblock %}
{# BODY #}
{% block bodytag %}
class="action-{{c.action}} {{c.action}} front
controller-{{c.controller.split(':')[0].split('.')[-1]}} {{c.controller.split(':')[-1]}}
{# 'with-sidebar' if self.secondary_content() else 'no-sidebar' #}{# commented out as it causes errors in previews otherwise #}
"
id="{{ body_id() if body_id is defined }}"
{% endblock %}