From 43229970012ea4227f558e450186773217c95740 Mon Sep 17 00:00:00 2001
From: Hanne Moa <hanne.moa@uninett.no>
Date: Wed, 26 Oct 2016 11:08:48 +0200
Subject: [PATCH] Add a separate "base.twig" for module "core"

"core" needs to be able to wrap some content in tabs
---
 modules/core/templates/base.twig | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 modules/core/templates/base.twig

diff --git a/modules/core/templates/base.twig b/modules/core/templates/base.twig
new file mode 100644
index 000000000..47a732abd
--- /dev/null
+++ b/modules/core/templates/base.twig
@@ -0,0 +1,24 @@
+{% extends "base.twig" %}
+{% block contentwrapper %}
+{% if tabname %}
+<div id="portalmenu" class="ui-tabs ui-widget ui-widget-content ui-corner-all">
+<ul class="tabset_tabs ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
+{% for name, link in links %}
+{% if name == pageid %}
+<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active">
+<a href="#">{{ link.text|trans }}</a>
+</li>
+{% else %}
+<li class="ui-state-default ui-corner-top">
+<a href="{{ link.href }}">{{ link.text|trans }}</a>
+</li>
+{% endif %}
+{% endfor %}
+</ul>
+<div id="portalcontent" class="ui-tabs-panel ui-widget-content ui-corner-bottom">
+{% endif %}
+{{ block('content') }}
+{% if tabname %}
+</div></div>
+{% endif %}
+{% endblock %}
-- 
GitLab