-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
arikaim
committed
May 2, 2024
1 parent
ca816e3
commit 8efaf99
Showing
36 changed files
with
136 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
{{ component('semantic~tabs',{ | ||
items: [ | ||
{ id: 'editor_tab', title: labels.editor, icon: 'edit', component: 'editor::admin.editor', active: true }, | ||
{ id: 'cpde_tab', title: labels.code, icon: 'code', component: 'editor::admin.code'} | ||
{ id: 'editor_tab', title: labels.editor, icon: 'edit', component: 'editor::admin.code', active: true } | ||
], | ||
menu: { component: 'system:admin.extensions.menu.actions', extension: 'editor' }, | ||
content: { component: 'editor::admin.editor' } | ||
content: { component: 'editor::admin.code' } | ||
}) | ||
}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"labels": { | ||
"editor": "Editor", | ||
"code": "Code" | ||
"editor": "Editor" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
{{ component('semantic~segment-title',{ title: title, icon: 'info' }) }} | ||
<div class="mt-8"> | ||
<div class="flex flex-col"> | ||
<div> | ||
<img class="image rounded bordered" src="{{ template_url }}/images/{{ file_name }}"> | ||
</div> | ||
<div class="font-bold"> | ||
{{ file_name }} | ||
</div> | ||
<div class="ui two column grid"> | ||
<div class="column"> | ||
{% component 'semantic~panel' %} | ||
<div class="mt-2"> | ||
<div class="flex flex-col"> | ||
<div> | ||
<img class="image rounded bordered" src="{{ template_url }}/images/{{ file_name }}"> | ||
</div> | ||
<div class="font-bold"> | ||
{{ file_name }} | ||
</div> | ||
</div> | ||
<h4>{{ labels.code }}</h4> | ||
{{ component('semantic~code',{ | ||
language: 'twig', | ||
content: ' <img src="{{ template_url }}/images/' ~ file_name ~ '">' | ||
}) | ||
}} | ||
</div> | ||
{% endcomponent %} | ||
</div> | ||
<h4>{{ labels.code }}</h4> | ||
{{ component('semantic~code',{ | ||
language: 'twig', | ||
content: ' <img src="{{ template_url }}/images/' ~ file_name ~ '">' | ||
}) | ||
}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"title": "Image Details", | ||
"icon": "info", | ||
"labels": { | ||
"code": "Template Code" | ||
} | ||
|
Oops, something went wrong.