You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

47 lines
1.2 KiB

<?php
/**
* The modal containing the glossario post content.
*
* @link https://horizontes.info
* @since 1.0.0
*
* @package Reuna_Glossario
* @subpackage Reuna_Glossario/public/views
*/
$slug = get_post_field('post_name', $post);
?>
<div
x-show.transition.opacity="modal === 'glossario-<?php echo $slug ?>'"
x-cloak
class="modal"
id="modal-glossario-<?php echo $slug ?>"
role="dialog"
aria-labelledby="modal-glossario-<?php echo $slug ?>-label"
>
<div @click.away="$dispatch('modal-close')" class="rg-bg-yellow-100 rg-px-4 lg:rg-px-12 rg-pt-4 rg-py-6 lg:rg-py-8 rg-max-w-2xl rg-border-l-8 rg-border-red-400 modal-dialog">
<button
@click="$dispatch('modal-close')"
type="button"
class="rg-absolute rg-top-0 rg-right-0 rg-text-2xl rg-text-red-400 hover:rg-opacity-75 rg-mt-2 rg-mr-2"
aria-label="{{ __('Fechar', 'sage') }}"
>
<i class="far fa-times-circle"></i>
</button>
<h2 class="rg-text-xl rg-font-bold rg-leading-tight" id="modal-glossario-<?php echo $slug ?>-label">
<?php echo get_the_title($post); ?>
</h2>
<div class="rg-mt-5 content">
<?php echo get_the_content(null, false, $post); ?>
</div>
</div>
<div class="modal-backdrop"></div>
</div>