{% extends "page.html" %} {%- block page_layout -%}no-sidebar{%- endblock %} {%- block subtitle -%} {{ ui.subtitle_item(_("Welcome")) }} {{- super() }} {%- endblock %} {%- block toolbar %}{% endblock %} {%- block primary_content_inner %} {%- call ui.util.call(ui.grid) -%} {%- call ui.util.call(ui.column, span={"xs": 12, "md": 6}) -%} {%- block promoted %} {%- call ui.util.call(ui.section, title=_('Welcome to CKAN')) -%}
{{ _('This is a place where you can find and share data with others.') }}
{%- endcall %} {%- endblock %} {%- endcall %} {%- call ui.util.call(ui.column, span={"xs": 12, "md": 6}) -%} {%- block search %} {%- call ui.util.call(ui.section, title=_('Discover Datasets'), level=3) -%} {%- call ui.util.call(ui.search_form_box, action=h.url_for('dataset.search')) -%} {{ ui.search_input(placeholder=_('Search datasets...')) }} {{ ui.search_submit_button(_("Search")) }} {%- endcall %} {%- endcall %} {%- endblock %} {%- endcall %} {%- endcall %} {%- call ui.util.call(ui.grid) -%} {%- call ui.util.call(ui.column, span={"xs": 12, "md": 6}) -%} {%- block featured_group %} {%- call ui.util.call(ui.section, title=_('Featured Groups'), level=3) -%} {%- set groups = h.get_featured_groups() -%} {%- if groups -%} {%- call ui.util.call(ui.group_list) -%} {%- for group in groups -%} {{ ui.group(group=group) }} {%- endfor %} {%- endcall %} {%- else -%}{{ _('A featured group would appear here.') }}
{%- endif %} {%- endcall %} {%- endblock %} {%- endcall %} {%- call ui.util.call(ui.column, span={"xs": 12, "md": 6}) -%} {%- block featured_organization %} {%- call ui.util.call(ui.section, title=_('Featured Organizations'), level=3) -%} {%- set organizations = h.get_featured_organizations() -%} {%- if organizations -%} {%- call ui.util.call(ui.organization_list) -%} {%- for organization in organizations -%} {{ ui.organization(organization=organization) }} {%- endfor %} {%- endcall %} {%- else -%}{{ _('A featured organization would appear here.') }}
{%- endif %} {%- endcall %} {%- endblock %} {%- endcall %} {%- endcall %} {%- endblock %}