diff --git a/www/wp-content/themes/ation2016/archive.php b/www/wp-content/themes/ation2016/archive.php
index 7c11d57..a929e27 100755
--- a/www/wp-content/themes/ation2016/archive.php
+++ b/www/wp-content/themes/ation2016/archive.php
@@ -33,6 +33,11 @@
} else if ( is_post_type_archive() ) {
$context['title'] = post_type_archive_title( '', false );
array_unshift( $templates, 'archive-' . get_post_type() . '.twig' );
+} else if ( is_tax('semester') ) {
+ $term = $wp_query->queried_object;
+ $context['title'] = $term->name;
+ $context['debug'] = print_r($term, true);
+ array_unshift( $templates, 'archive-' . $term->taxonomy . '.twig' );
}
$context['posts'] = Timber::get_posts();
diff --git a/www/wp-content/themes/ation2016/page-services.php b/www/wp-content/themes/ation2016/page-services.php
new file mode 100644
index 0000000..e69de29
diff --git a/www/wp-content/themes/ation2016/templates/archive-semester.twig b/www/wp-content/themes/ation2016/templates/archive-semester.twig
new file mode 100644
index 0000000..b5f9608
--- /dev/null
+++ b/www/wp-content/themes/ation2016/templates/archive-semester.twig
@@ -0,0 +1,10 @@
+{% extends "base.twig" %}
+
+{% block content %}
+
+
{{title}}
+ {% for post in posts %}
+ {% include ['tease-'~post.post_type~'.twig', 'tease.twig'] %}
+ {% endfor %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/www/wp-content/themes/ation2016/templates/base.twig b/www/wp-content/themes/ation2016/templates/base.twig
index a7573cf..8e3a38a 100755
--- a/www/wp-content/themes/ation2016/templates/base.twig
+++ b/www/wp-content/themes/ation2016/templates/base.twig
@@ -23,7 +23,7 @@
- {% if title %}{{title}}
{% endif %}
+ {# {% if title %}{{title}}
{% endif %} #}