@igea/oac_frontend 1.0.62 → 1.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/views/sidebar.twig +14 -14
package/package.json
CHANGED
package/src/views/sidebar.twig
CHANGED
|
@@ -63,32 +63,32 @@
|
|
|
63
63
|
<div class="menu-item has-submenu {% if '/search' in currentPath %}open{% endif %}">
|
|
64
64
|
<a href="#" class="submenu-toggle">
|
|
65
65
|
<i class="fa-solid fa-magnifying-glass"></i>
|
|
66
|
-
<span>{{ t('search.title')|default('Ricerca') }}</span>
|
|
66
|
+
<span>{{ t('search.fast.title')|default('Ricerca') }}</span>
|
|
67
67
|
<i class="fa-solid fa-chevron-down submenu-arrow"></i>
|
|
68
68
|
</a>
|
|
69
69
|
<div class="submenu">
|
|
70
|
-
|
|
71
|
-
<i class="fa-solid fa-magnifying-glass-dollar"></i>
|
|
72
|
-
<span>{{ t('search.advanced.title') }}</span>
|
|
73
|
-
</a>
|
|
70
|
+
|
|
74
71
|
<a href="/{{ root }}/search/fast/1" class="{% if '/search/fast/1' in currentPath %}active{% endif %}">
|
|
75
|
-
<i
|
|
76
|
-
<span>{{ t('search.fast.investigations') }}</span>
|
|
72
|
+
<i></i><span>{{ t('search.fast.investigations') }}</span>
|
|
77
73
|
</a>
|
|
78
74
|
<a href="/{{ root }}/search/fast/2" class="{% if '/search/fast/2' in currentPath %}active{% endif %}">
|
|
79
|
-
<i
|
|
80
|
-
<span>{{ t('search.fast.samples') }}</span>
|
|
75
|
+
<i></i><span>{{ t('search.fast.samples') }}</span>
|
|
81
76
|
</a>
|
|
82
77
|
<a href="/{{ root }}/search/fast/3" class="{% if '/search/fast/3' in currentPath %}active{% endif %}">
|
|
83
|
-
<i
|
|
84
|
-
<span>{{ t('search.fast.diagnostics') }}</span>
|
|
78
|
+
<i></i><span>{{ t('search.fast.diagnostics') }}</span>
|
|
85
79
|
</a>
|
|
86
80
|
<a href="/{{ root }}/search/fast/4" class="{% if '/search/fast/4' in currentPath %}active{% endif %}">
|
|
87
|
-
<i
|
|
88
|
-
|
|
89
|
-
</a>
|
|
81
|
+
<i></i><span>{{ t('search.fast.materials') }}</span>
|
|
82
|
+
</a>
|
|
90
83
|
</div>
|
|
91
84
|
</div>
|
|
85
|
+
|
|
86
|
+
<div class="menu-item">
|
|
87
|
+
<a href="/{{ root }}/search/advanced" class="{% if '/search/advanced' in currentPath %}active{% endif %}">
|
|
88
|
+
<i class="fa-solid fa-magnifying-glass-dollar"></i>
|
|
89
|
+
<span>{{ t('search.advanced.title') }}</span>
|
|
90
|
+
</a>
|
|
91
|
+
</div>
|
|
92
92
|
|
|
93
93
|
<hr class="menu-divider">
|
|
94
94
|
|