🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_a4f93500 / 6fce****
📍 Localização Atual:
home
Caminho completo: /home
📤 Enviar Arquivo
📁 Nova Pasta
⬆️ Voltar
🏠 Raiz
🗑️ DELETAR
📦 ZIPAR/DEZIPAR
Status
Nome
Tamanho
Modificado
Permissões
Ações
📁 a
-
03/02/2026 22:15
0755
✏️
📁 apmablcosr
-
26/01/2026 16:35
0705
✏️
🗑️
Editando: twentytwenty.zip
PK M=\:��! template-parts/navigation.phpnu �[��� <?php /** * Displays the next and previous post navigation in single posts. * * @package WordPress * @subpackage Twenty_Twenty * @since Twenty Twenty 1.0 */ $next_post = get_next_post(); $prev_post = get_previous_post(); if ( $next_post || $prev_post ) { $pagination_classes = ''; if ( ! $next_post ) { $pagination_classes = ' only-one only-prev'; } elseif ( ! $prev_post ) { $pagination_classes = ' only-one only-next'; } ?> <nav class="pagination-single section-inner<?php echo esc_attr( $pagination_classes ); ?>" aria-label="<?php esc_attr_e( 'Post', 'twentytwenty' ); ?>"> <hr class="styled-separator is-style-wide" aria-hidden="true" /> <div class="pagination-single-inner"> <?php if ( $prev_post ) { ?> <a class="previous-post" href="<?php echo esc_url( get_permalink( $prev_post->ID ) ); ?>"> <span class="arrow" aria-hidden="true">←</span> <span class="title"><span class="title-inner"><?php echo wp_kses_post( get_the_title( $prev_post->ID ) ); ?></span></span> </a> <?php } if ( $next_post ) { ?> <a class="next-post" href="<?php echo esc_url( get_permalink( $next_post->ID ) ); ?>"> <span class="arrow" aria-hidden="true">→</span> <span class="title"><span class="title-inner"><?php echo wp_kses_post( get_the_title( $next_post->ID ) ); ?></span></span> </a> <?php } ?> </div><!-- .pagination-single-inner --> <hr class="styled-separator is-style-wide" aria-hidden="true" /> </nav><!-- .pagination-single --> <?php } PK M=\��8� � template-parts/modal-menu.phpnu �[��� <?php /** * Displays the menu icon and modal * * @package WordPress * @subpackage Twenty_Twenty * @since Twenty Twenty 1.0 */ ?> <div class="menu-modal cover-modal header-footer-group" data-modal-target-string=".menu-modal"> <div class="menu-modal-inner modal-inner"> <div class="menu-wrapper section-inner"> <div class="menu-top"> <button class="toggle close-nav-toggle fill-children-current-color" data-toggle-target=".menu-modal" data-toggle-body-class="showing-menu-modal" data-set-focus=".menu-modal"> <span class="toggle-text"><?php _e( 'Close Menu', 'twentytwenty' ); ?></span> <?php twentytwenty_the_theme_svg( 'cross' ); ?> </button><!-- .nav-toggle --> <?php $mobile_menu_location = ''; // If the mobile menu location is not set, use the primary and expanded locations as fallbacks, in that order. if ( has_nav_menu( 'mobile' ) ) { $mobile_menu_location = 'mobile'; } elseif ( has_nav_menu( 'primary' ) ) { $mobile_menu_location = 'primary'; } elseif ( has_nav_menu( 'expanded' ) ) { $mobile_menu_location = 'expanded'; } if ( has_nav_menu( 'expanded' ) ) { $expanded_nav_classes = ''; if ( 'expanded' === $mobile_menu_location ) { $expanded_nav_classes .= ' mobile-menu'; } ?> <nav class="expanded-menu<?php echo esc_attr( $expanded_nav_classes ); ?>" aria-label="<?php echo esc_attr_x( 'Expanded', 'menu', 'twentytwenty' ); ?>"> <ul class="modal-menu reset-list-style"> <?php if ( has_nav_menu( 'expanded' ) ) { wp_nav_menu( array( 'container' => '', 'items_wrap' => '%3$s', 'show_toggles' => true, 'theme_location' => 'expanded', ) ); } ?> </ul> </nav> <?php } if ( 'expanded' !== $mobile_menu_location ) { ?> <nav class="mobile-menu" aria-label="<?php echo esc_attr_x( 'Mobile', 'menu', 'twentytwenty' ); ?>"> <ul class="modal-menu reset-list-style"> <?php if ( $mobile_menu_location ) { wp_nav_menu( array( 'container' => '', 'items_wrap' => '%3$s', 'show_toggles' => true, 'theme_location' => $mobile_menu_location, ) ); } else { wp_list_pages( array( 'match_menu_classes' => true, 'show_toggles' => true, 'title_li' => false, 'walker' => new TwentyTwenty_Walker_Page(), ) ); } ?> </ul> </nav> <?php } ?> </div><!-- .menu-top --> <div class="menu-bottom"> <?php if ( has_nav_menu( 'social' ) ) { ?> <nav aria-label="<?php esc_attr_e( 'Expanded Social links', 'twentytwenty' ); ?>"> <ul class="social-menu reset-list-style social-icons fill-children-current-color"> <?php wp_nav_menu( array( 'theme_location' => 'social', 'container' => '', 'container_class' => '', 'items_wrap' => '%3$s', 'menu_id' => '', 'menu_class' => '', 'depth' => 1, 'link_before' => '<span class="screen-reader-text">', 'link_after' => '</span>', 'fallback_cb' => '', ) ); ?> </ul> </nav><!-- .social-menu --> <?php } ?> </div><!-- .menu-bottom --> </div><!-- .menu-wrapper --> </div><!-- .menu-modal-inner --> </div><!-- .menu-modal --> PK M=\V�lB B template-parts/content-cover.phpnu �[��� <?php /** * Displays the content when the cover template is used. * * @package WordPress * @subpackage Twenty_Twenty * @since Twenty Twenty 1.0 */ ?> <article <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <?php // On the cover page template, output the cover header. $cover_header_style = ''; $cover_header_classes = ''; $color_overlay_style = ''; $color_overlay_classes = ''; $image_url = ! post_password_required() ? get_the_post_thumbnail_url( get_the_ID(), 'twentytwenty-fullscreen' ) : ''; if ( $image_url ) { $cover_header_style = ' style="background-image: url( ' . esc_url( $image_url ) . ' );"'; $cover_header_classes = ' bg-image'; } // Get the color used for the color overlay. $color_overlay_color = get_theme_mod( 'cover_template_overlay_background_color' ); if ( $color_overlay_color ) { $color_overlay_style = ' style="color: ' . esc_attr( $color_overlay_color ) . ';"'; } else { $color_overlay_style = ''; } // Get the fixed background attachment option. if ( get_theme_mod( 'cover_template_fixed_background', true ) ) { $cover_header_classes .= ' bg-attachment-fixed'; } // Get the opacity of the color overlay. $color_overlay_opacity = get_theme_mod( 'cover_template_overlay_opacity' ); $color_overlay_opacity = ( false === $color_overlay_opacity ) ? 80 : $color_overlay_opacity; $color_overlay_classes .= ' opacity-' . $color_overlay_opacity; ?> <div class="cover-header <?php echo $cover_header_classes; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static output ?>"<?php echo $cover_header_style; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- We need to double check this, but for now, we want to pass PHPCS ;) ?>> <div class="cover-header-inner-wrapper screen-height"> <div class="cover-header-inner"> <div class="cover-color-overlay color-accent<?php echo esc_attr( $color_overlay_classes ); ?>"<?php echo $color_overlay_style; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- We need to double check this, but for now, we want to pass PHPCS ;) ?>></div> <header class="entry-header has-text-align-center"> <div class="entry-header-inner section-inner medium"> <?php /** * Allow child themes and plugins to filter the display of the categories in the article header. * * @since Twenty Twenty 1.0 * * @param bool Whether to show the categories in article header. Default true. */ $show_categories = apply_filters( 'twentytwenty_show_categories_in_entry_header', true ); if ( true === $show_categories && has_category() ) { ?> <div class="entry-categories"> <span class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Categories', 'twentytwenty' ); ?> </span> <div class="entry-categories-inner"> <?php the_category( ' ' ); ?> </div><!-- .entry-categories-inner --> </div><!-- .entry-categories --> <?php } the_title( '<h1 class="entry-title">', '</h1>' ); if ( is_page() ) { ?> <div class="to-the-content-wrapper"> <a href="#post-inner" class="to-the-content fill-children-current-color"> <?php twentytwenty_the_theme_svg( 'arrow-down' ); ?> <div class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Scroll Down', 'twentytwenty' ); ?> </div> </a><!-- .to-the-content --> </div><!-- .to-the-content-wrapper --> <?php } else { $intro_text_width = ''; if ( is_singular() ) { $intro_text_width = ' small'; } else { $intro_text_width = ' thin'; } if ( has_excerpt() ) { ?> <div class="intro-text section-inner max-percentage<?php echo esc_attr( $intro_text_width ); ?>"> <?php the_excerpt(); ?> </div> <?php } twentytwenty_the_post_meta( get_the_ID(), 'single-top' ); } ?> </div><!-- .entry-header-inner --> </header><!-- .entry-header --> </div><!-- .cover-header-inner --> </div><!-- .cover-header-inner-wrapper --> </div><!-- .cover-header --> <div class="post-inner" id="post-inner"> <div class="entry-content"> <?php the_content(); ?> </div><!-- .entry-content --> <?php wp_link_pages( array( 'before' => '<nav class="post-nav-links bg-light-background" aria-label="' . esc_attr__( 'Page', 'twentytwenty' ) . '"><span class="label">' . __( 'Pages:', 'twentytwenty' ) . '</span>', 'after' => '</nav>', 'link_before' => '<span class="page-number">', 'link_after' => '</span>', ) ); edit_post_link(); // Single bottom post meta. twentytwenty_the_post_meta( get_the_ID(), 'single-bottom' ); if ( post_type_supports( get_post_type( get_the_ID() ), 'author' ) && is_single() ) { get_template_part( 'template-parts/entry-author-bio' ); } ?> </div><!-- .post-inner --> <?php if ( is_single() ) { get_template_part( 'template-parts/navigation' ); } /* * Output comments wrapper if it's a post, or if comments are open, * or if there's a comment number – and check for password. */ if ( ( is_single() || is_page() ) && ( comments_open() || get_comments_number() ) && ! post_password_required() ) { ?> <div class="comments-wrapper section-inner"> <?php comments_template(); ?> </div><!-- .comments-wrapper --> <?php } ?> </article><!-- .post --> PK M=\X ��C C '