Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Becker <halfdan@xnorfz.de>2013-04-06 01:51:19 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-04-06 01:51:19 +0400
commit92748d5475d69faede7e3a46fbc5e8d4b21c1ade (patch)
tree3489c37c6745de0346082d669434632ff4541e6e /plugins/Actions/templates
parentd58eb3291b938cda680e9758e19f2f0a754d0c56 (diff)
More template adjustments.
Moved javascriptCode.tpl to theme
Diffstat (limited to 'plugins/Actions/templates')
-rw-r--r--plugins/Actions/templates/indexSiteSearch.tpl19
-rw-r--r--plugins/Actions/templates/indexSiteSearch.twig17
2 files changed, 17 insertions, 19 deletions
diff --git a/plugins/Actions/templates/indexSiteSearch.tpl b/plugins/Actions/templates/indexSiteSearch.tpl
deleted file mode 100644
index a692fdd697..0000000000
--- a/plugins/Actions/templates/indexSiteSearch.tpl
+++ /dev/null
@@ -1,19 +0,0 @@
-<div id='leftcolumn'>
- <h2>{'Actions_WidgetSearchKeywords'|translate}</h2>
- {$keywords}
-
- <h2>{'Actions_WidgetSearchNoResultKeywords'|translate}</h2>
- {$noResultKeywords}
-
- {if isset($categories)}
- <h2>{'Actions_WidgetSearchCategories'|translate}</h2>
- {$categories}
- {/if}
-
-</div>
-
-<div id='rightcolumn'>
- <h2>{'Actions_WidgetPageUrlsFollowingSearch'|translate}</h2>
- {$pagesUrlsFollowingSiteSearch}
-
-</div>
diff --git a/plugins/Actions/templates/indexSiteSearch.twig b/plugins/Actions/templates/indexSiteSearch.twig
new file mode 100644
index 0000000000..d541b9ed62
--- /dev/null
+++ b/plugins/Actions/templates/indexSiteSearch.twig
@@ -0,0 +1,17 @@
+<div id='leftcolumn'>
+ <h2>{{ 'Actions_WidgetSearchKeywords'|translate }}</h2>
+ {{ keywords }}
+
+ <h2>{{ 'Actions_WidgetSearchNoResultKeywords'|translate }}</h2>
+ {{ noResultKeywords }}
+
+ {% if categories is defined %}
+ <h2>{{ 'Actions_WidgetSearchCategories'|translate }}</h2>
+ {{ categories }}
+ {% endif %}
+</div>
+
+<div id='rightcolumn'>
+ <h2>{{ 'Actions_WidgetPageUrlsFollowingSearch'|translate }}</h2>
+ {{ pagesUrlsFollowingSiteSearch }}
+</div>