diff options
| author | 2020-02-13 19:22:35 +0200 | |
|---|---|---|
| committer | 2020-02-13 18:22:35 +0100 | |
| commit | d30ac40772ec1b4706922afd8acab8448af39a9e (patch) | |
| tree | 6b7cec8455a542875959a09f7bdcc7a2af285fa1 /app/layout/layout.phtml | |
| parent | 4ddd1821bb0fc1186937551d59100294b8833727 (diff) | |
Enhance content path feature (#2778)
- Add a maintenance section to be able to clear cache and force reload a feed.
- Add an icon next to path field to show a pop-up with the result of the content path.
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Co-authored-by: Marien Fressinaud <dev@marienfressinaud.fr>
Diffstat (limited to 'app/layout/layout.phtml')
| -rw-r--r-- | app/layout/layout.phtml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml index 498cc4470..3f4cc7b4a 100644 --- a/app/layout/layout.phtml +++ b/app/layout/layout.phtml @@ -66,5 +66,18 @@ <span class="msg"><?= $msg ?></span> <a class="close" href=""><?= _i('close') ?></a> </div> + +<!-- Popup--> +<div id="popup"> + <div id="popup-content"> + <div id="popup-close" class="popup-row">×</div> + <div id="popup-txt" class="popup-row"></div> + <div id="popup-iframe-container" class="popup-row"> + <div id="popup-iframe-sub"> + <iframe id="popup-iframe" frameborder="0"></iframe> + </div> + </div> + </div> +</div> </body> </html> |
