-
- {# Remove this block if you don't need it anymore. #}
- {{ include('partials/_fresh_install.twig') }}
-
- {{ record.teaser }}
-
- {{ popup(record.image, 1200, 500) }}
-
- {{ record.body }}
-
- {{ include('partials/_recordfooter.twig', { 'record': record }) }}
-
- {% endif %}
-
-{% endblock main %}
diff --git a/www/public/theme/base-inuitcss/js/main.js b/www/public/theme/base-inuitcss/js/main.js
deleted file mode 100644
index 67ff842..0000000
--- a/www/public/theme/base-inuitcss/js/main.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(r){function t(n){if(e[n])return e[n].exports;var o=e[n]={exports:{},id:n,loaded:!1};return r[n].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var e={};return t.m=r,t.c=e,t.p="",t(0)}([function(r,t){"use strict";function e(r,t){return r+t}r.exports=e}]);
\ No newline at end of file
diff --git a/www/public/theme/base-inuitcss/listing.twig b/www/public/theme/base-inuitcss/listing.twig
deleted file mode 100644
index 822ad29..0000000
--- a/www/public/theme/base-inuitcss/listing.twig
+++ /dev/null
@@ -1,72 +0,0 @@
-{% extends 'partials/_master.twig' %}
-
-{% block main %}
-
- {# This template is used for 'listings': Generic pages that list a number of
- records from a certain contenttype. These records are available as an array
- called 'records'. In the for-loop below, we iterate over the records that
- are on this page. It can be used for overview pages like 'all entries', or
- 'all records tagged with kittens'. #}
-
- {# If used for listing a taxonomy, we add a heading.: #}
- {% if taxonomytype is defined %}
-
- {{ __('general.phrase.overview-for') }}
- {% if taxonomy.options[slug] is defined %}
- {{ taxonomy.options[slug] }}
- {% else %}
- {{ slug }}
- {% endif %}
-
- {# Taxonomies are fetched unordered by design except if 'has_sortorder'
- is set to true. This way we keep 'grouping' intact in the listing. #}
- {% if not taxonomy.has_sortorder %}
- {# If we specified an order in config.yml, sort them here, accordingly: #}
- {% set records = records|order(config.get('general/listing_sort')) %}
- {% endif %}
- {% endif %}
-
- {% for record in records %}
-
-
-
- {% endif %}
-
- {% include 'partials/_recordfooter.twig' with { 'record': record } %}
-
-
-
- {% if not loop.last %}
-
- {% endif %}
-
- {% else %}
-
-
-
{{ __('general.phrase.no-content-found') }}
-
-
- {{ __("Unfortunately, no content could be found. Try another page, or go to the homepage.", {'%paths_root%': path('homepage')} ) }}
-
-
-
- {% endfor %}
-
- {# If there are more records than will fit on one page, the pager is shown. #}
- {{ pager(template = 'partials/_sub_pager.twig') }}
-
-{% endblock main %}
diff --git a/www/public/theme/base-inuitcss/partials/_aside.twig b/www/public/theme/base-inuitcss/partials/_aside.twig
deleted file mode 100644
index e93ce25..0000000
--- a/www/public/theme/base-inuitcss/partials/_aside.twig
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
diff --git a/www/public/theme/base-inuitcss/partials/_footer.twig b/www/public/theme/base-inuitcss/partials/_footer.twig
deleted file mode 100644
index efa361c..0000000
--- a/www/public/theme/base-inuitcss/partials/_footer.twig
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
\ No newline at end of file
diff --git a/www/public/theme/base-inuitcss/partials/_fresh_install.twig b/www/public/theme/base-inuitcss/partials/_fresh_install.twig
deleted file mode 100644
index 7d2f03a..0000000
--- a/www/public/theme/base-inuitcss/partials/_fresh_install.twig
+++ /dev/null
@@ -1,11 +0,0 @@
-{% if user %}
-
-
Welcome to the Bolt Skeleton theme.
-
This is a minimal theme, with a modular structure. It is well suited to build your own theme's on top of.
-
-
Check the readme.md for instructions on how to customize this theme.
- Note: Only registered users will see this. This piece of content is hidden from regular visitors.
-
-{% endif %}
diff --git a/www/public/theme/base-inuitcss/partials/_header.twig b/www/public/theme/base-inuitcss/partials/_header.twig
deleted file mode 100644
index 50c22c9..0000000
--- a/www/public/theme/base-inuitcss/partials/_header.twig
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- {# the values in the 'config' object are taken directly from the file app/config/config.yml #}
-
- {% endif %}
-
-
-
\ No newline at end of file
diff --git a/www/public/theme/base-inuitcss/partials/_master.twig b/www/public/theme/base-inuitcss/partials/_master.twig
deleted file mode 100644
index 013bbd9..0000000
--- a/www/public/theme/base-inuitcss/partials/_master.twig
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
- {# make sure we always display a proper title: The record's title if there is one, appended with the
- sitename. If there is no title, we append the sitename with the payoff, if there is one. #}
-
- {%- if record.title is defined %}{{ record.title|striptags }} | {% endif -%}
- {{ config.get('general/sitename') -}}
- {% if record.title is not defined and config.get('general/payoff') %} | {{ config.get('general/payoff') }}{% endif -%}
-
-
-
-
-
- {% block body %}
-
- {{ include('partials/_header.twig') }}
-
- {{ widgets('main_top') }}
-
- {% block main %}
- {% endblock main %}
-
- {{ widgets('main_bottom') }}
-
- {{ include('partials/_aside.twig') }}
-
- {% endblock body %}
-
- {{ include('partials/_footer.twig') }}
-
-
-
diff --git a/www/public/theme/base-inuitcss/partials/_recordfooter.twig b/www/public/theme/base-inuitcss/partials/_recordfooter.twig
deleted file mode 100644
index b91d422..0000000
--- a/www/public/theme/base-inuitcss/partials/_recordfooter.twig
+++ /dev/null
@@ -1,46 +0,0 @@
-{# This file is inserted as the 'footer' of each listed record. #}
-
- {{ __('general.phrase.permalink') }} -
- {# include the 'default' links to taxonomies. Check the documentation for ways to modify and customize
- what is output to the browser: https://docs.bolt.cm/content/taxonomies #}
- {{ include('_sub_taxonomylinks.twig', { record: record }) }}
-
-
- {% set previous = record.previous('id') %}
- {% set next = record.next('id') %}
- {% if previous or next %}
-
- {% endif %}
-{% endif %}
diff --git a/www/public/theme/base-inuitcss/partials/_sub_field_blocks.twig b/www/public/theme/base-inuitcss/partials/_sub_field_blocks.twig
deleted file mode 100644
index 9422950..0000000
--- a/www/public/theme/base-inuitcss/partials/_sub_field_blocks.twig
+++ /dev/null
@@ -1,94 +0,0 @@
-{# Sub-block for 'text' field such as 'text', 'textarea', or 'html' #}
-{% block text_field %}
-
- {%- autoescape false -%}
- {# If 'allowtwig' is true for this field, we'll need to parse it as Twig here. #}
- {% if allowtwig|default(false) %}{{ include(template_from_string(value)) }}{% else %}{{ value }}{% endif -%}
- {%- endautoescape -%}
-
- {# If 'allowtwig' is true for this field, we'll need to parse it as Twig here. #}
- {% if allowtwig|default(false) %}{{ include(template_from_string(value))|markdown }}{% else %}{{ value|markdown }}{% endif -%}
-
-{% endblock %}
-
-{# Block for "basic" fields like HTML, Markdown, Textarea and Text #}
-{% block common_fields %}
-
- {# HTML, Textarea, Text fields #}
- {% if fieldtype in ['html', 'textarea', 'text'] %}
- {{ block('text_field') }}
- {% endif %}
-
- {# Markdown fields #}
- {% if fieldtype == 'markdown' %}
- {{ block('markdown_field') }}
- {% endif %}
-
- {# Image fields #}
- {% if fieldtype == "image" and value['file'] is not empty %}
- {{ value|showimage('684') }}
- {% endif %}
-
- {# Video fields #}
- {% if fieldtype == "video" and value.responsive|default is not empty %}
-
- {{ value.responsive }}
-
- {% endif %}
-
-{% endblock %}
-
-{# Block for other field types, like Geo, Select, Checkbox and others. #}
-{% block extended_fields %}
-
- {# Geolocation field #}
- {% if fieldtype == "geolocation" and value.latitude is defined %}
-
- {% endif %}
-
- {# Special case for 'select' fields: if it's a multiple select, the value is an array. #}
- {% if fieldtype == "select" and value is not empty %}
-
- {% endif %}
-
- {# Imagelist fields #}
- {% if fieldtype == "imagelist" and value is not empty %}
- {{ block('imagelist_field') }}
- {% endif %}
-
- {# No special case defined for this type of field. We just output them, if it's
- a simple scalar, and 'dump' them otherwise. #}
- {% if fieldtype in [ 'filelist', 'datetime', 'date', 'integer', 'float' ] and value is not empty %}
-
{{ key }}:
- {% if value is iterable %}
- {{ dump(value) }}
- {% else %}
- {{ value }}
- {% endif %}
-
- {% endif %}
-
-{% endblock %}
diff --git a/www/public/theme/base-inuitcss/partials/_sub_fields.twig b/www/public/theme/base-inuitcss/partials/_sub_fields.twig
deleted file mode 100644
index c876f30..0000000
--- a/www/public/theme/base-inuitcss/partials/_sub_fields.twig
+++ /dev/null
@@ -1,115 +0,0 @@
-{#
- Default output for fields.
-
- This file is contains the 'sub_fields' Twig block tag.
-
- The 'sub_fields' Twig block is split into two parts:
- - The first section initializes the variables and settings, both from the
- ContentType definitions as well as passed in variables.
- - The last section is where the actual looping is done, and the relevant
- {{ block() }} function is called, for the 'ContentType fields',
- 'repeater fields' and 'template fields' in turn.
-
- Read the relevant section in the documentation on usage of this
- functionality: https://docs.bolt.cm/templating
-
- For more information on using blocks, see the Twig documentation at:
- - https://twig.sensiolabs.org/doc/1.x/tags/block.html
- - https://twig.sensiolabs.org/doc/1.x/functions/block.html
-#}
-{% use 'partials/_sub_field_blocks.twig' %}
-
-{% block sub_fields %}
- {# SECTION 1: INITIALIZATION #}
- {%- spaceless %}
- {# Set up the array of fieldnames that should be iterated. We do this by looping
- over _all_ the fields, and skipping those in the 'omittedkeys' array. #}
- {% set omittedkeys = [ 'id', 'slug', 'datecreated', 'datechanged', 'datepublish',
- 'datedepublish', 'username', 'status', 'ownerid', 'templatefields' ] %}
-
- {# Skip over the fields that are used in the slug, unless explicitly told not to,
- using the `skip_uses` parameter. #}
- {% if (record.contenttype.fields.slug.uses|default(null) is iterable) and skip_uses|default(true) %}
- {% set omittedkeys = omittedkeys|merge(record.contenttype.fields.slug.uses) %}
- {% endif %}
-
- {# We also skip over the fields that are explicitly excluded. #}
- {% if exclude|default is iterable %}
- {% set omittedkeys = omittedkeys|merge(exclude) %}
- {% endif %}
- {% endspaceless -%}
-
- {# SECTION 2: LOOPING AND ITERATION - The actual looping is done here. #}
- {% for key, value in record.values if (key not in omittedkeys) %}
-
- {# Is the field allowed to contain Twig functions #}
- {% set allowtwig = record.contenttype.fields[key].allowtwig|default(false) %}
-
- {# Fields that are considered 'common': 'html', 'markdown', 'textarea',
- 'text', 'image', 'video' and 'imagelist' #}
- {% if common|default(true) and (key not in exclude|default([])) %}
-
- {% set fieldtype = record.fieldtype(key) %}
- {% set value = record.get(key) %}
- {{ block('common_fields') }}
-
- {% endif %}
-
- {# The rest of the built-in fieldtypes #}
- {% if extended|default(false) and (key not in exclude|default([])) %}
-
- {% set fieldtype = record.fieldtype(key) %}
- {{ block('extended_fields') }}
-
- {% endif %}
-
- {# Finally, the repeaters #}
- {% if repeaters|default(false) == true and record.fieldtype(key) == "repeater" %}
-
- {% if (global.request.get('_route') != "preview") %}
-
- {% for repeater in value %}
-
- {% for key, repeaterfield in repeater %}
-
- {% set fieldtype = repeaterfield.fieldtype() %}
- {% set value = repeaterfield.value() %}
- {{ block('common_fields') }}
- {{ block('extended_fields') }}
-
- {% endfor %}
- {% endfor %}
-
- {% else %}
- {# @deprecated
- `blocks()` does not work correctly when _previewing_ repeater fields. This will be
- fixed properly for Bolt 4, but for now we just output a notice, and prevent crashes.
- See also: https://github.com/bolt/bolt/issues/6605 #}
-
- Unfortunately, Repeater fields do not work correctly with the generic
- block() function, when using Preview. To view these fields, please
- save the record, and view the page normally.
-
- {% endif %}
- {% endif %}
-
- {% endfor %}
-
- {# We do the same for the templatefields, if set and not empty. #}
- {% set templatefields = record.values.templatefields.values|default() %}
- {% if templatefields is not empty %}
-
- {# Note: This needs to be expanded upon!! For better detection the 'virtual'
- contenttype for the templatefields should know about the types of fields. #}
- {% set templatefields_field_types = attribute(record.contenttype.templatefields|first, 'fields') %}
-
- {% for key, value in templatefields if (key not in omittedkeys) %}
-
- {% set fieldtype = attribute(attribute(templatefields_field_types, key), 'type') %}
- {{ block('common_fields') }}
- {{ block('extended_fields') }}
-
- {% endfor %}
-
- {% endif %}
-{% endblock sub_fields %}
diff --git a/www/public/theme/base-inuitcss/partials/_sub_menu.twig b/www/public/theme/base-inuitcss/partials/_sub_menu.twig
deleted file mode 100644
index 5cf28c7..0000000
--- a/www/public/theme/base-inuitcss/partials/_sub_menu.twig
+++ /dev/null
@@ -1,50 +0,0 @@
-{# This file might seem a little complex, because of the high density of tags.
- It uses Twig macros and ternary selectors. Read up on them, if required:
- macros: http://twig.sensiolabs.org/doc/templates.html#macros
- ternary operators: http://twig.sensiolabs.org/doc/templates.html#other-operators
-#}
-
-{# Make sure the setting for the submenus is defined. #}
-{% if withsubmenus is not defined %}
- {% set withsubmenus = true %}
-{% endif %}
-
-{# The 'recursive' macro, for inserting one menu item. If it has a submenu, it
- invokes itself to insert the items of the submenus. #}
-{% macro display_menu_item(item, loop, extraclass, withsubmenus) %}
- {% from _self import display_menu_item %}
- {% spaceless %}
-
- {% for submenu in item.submenu %}
- {{ display_menu_item(submenu, loop) }}
- {% endfor %}
-
- {% endif %}
-
- {% endspaceless %}
-{% endmacro %}
-
-{# Make the macro available for use #}
-{% from _self import display_menu_item %}
-
-{# The main menu loop: Iterates over the items, calling `display_menu_item` #}
-
-{% for item in menu %}
- {% if item.label is defined %}
- {{ display_menu_item(item, loop, '', withsubmenus) }}
- {% endif %}
-{% endfor %}
-
-
diff --git a/www/public/theme/base-inuitcss/partials/_sub_pager.twig b/www/public/theme/base-inuitcss/partials/_sub_pager.twig
deleted file mode 100644
index 49125c4..0000000
--- a/www/public/theme/base-inuitcss/partials/_sub_pager.twig
+++ /dev/null
@@ -1,37 +0,0 @@
-{% set link = pager.makelink() %}
-
-{% if pager.totalpages > 1 %}
-
-
-{# 'first' and 'prev' #}
-{% if pager.current > 1 and class!="narrow" %}
-
-
- {# Output all fields, in the order as defined in the contenttype.
- To change the generated html and configure the options, see:
- https://docs.bolt.cm/templating #}
- {% with { 'record': record, 'common': false, 'repeaters': true } %}
- {{ block('sub_fields', 'partials/_sub_fields.twig') }}
- {% endwith %}
-
- {# Uncomment this if you wish to dump the entire record to the client, for debugging purposes.
- {{ dump(record) }}
- #}
-
- {% include 'partials/_recordfooter.twig' with { 'record': record, 'extended': true } %}
-
-{% endblock main %}
diff --git a/www/public/theme/base-inuitcss/search.twig b/www/public/theme/base-inuitcss/search.twig
deleted file mode 100644
index 4d926b7..0000000
--- a/www/public/theme/base-inuitcss/search.twig
+++ /dev/null
@@ -1,63 +0,0 @@
-{% extends 'partials/_master.twig' %}
-
-{% block main %}
-
- {# This template is used for search results. If 'search' is defined,
- we display an appropriate title. The 'records' array contains all of the
- records matching the current query. If there are no results, the
- code in the 'else' part of the for-loop is used. #}
-
- {% if search is not empty %}
- {{ __('general.phrase.search-results-for-variable', { '%search%': search }) }}
- {% else %}
- {{ __('general.phrase.search') }}
- {% endif %}
-
-
- {# Perhaps we post a small teaser, stored in the 'block' named 'Search teaser' #}
- {% setcontent block = "block/search-teaser" %}
-
- {# check if we have 'content'. If so, we know we have have a teaser to display. #}
- {% if block.content is defined %}
- {{ block.content }}
- {% endif %}
-
-
-
- {% for record in records %}
-
-
-
-
-
- {% endfor %}
-
- {# If there are more records than will fit on one page, the pager is shown. #}
- {{ pager(template = 'partials/_sub_pager.twig') }}
-
-{% endblock main %}