D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sadaunjx
/
aldolynews.com
/
wp-content
/
themes
/
newsplus
/
Filename :
amp.php
back
Copy
<!doctype html> <html amp <?php echo AMP_HTML_Utils::build_attributes_string( $this->get( 'html_tag_attributes' ) ); // WPCS: XSS ok. ?>> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"> <?php do_action( 'amp_post_template_head', $this ); ?> <style amp-custom> <?php $this->load_parts( array( 'style' ) ); ?> <?php do_action( 'amp_post_template_css', $this ); ?> </style> </head> <body class="<?php echo esc_attr( $this->get( 'body_class' ) ); ?>"> <?php do_action('a4h_hook_amp_body_start'); ?> <header id="top" class="amp-wp-header"> <div> <a href="<?php echo esc_url( $this->get( 'home_url' ) ); ?>"> <?php $site_icon_url = $this->get( 'site_icon_url' ); ?> <?php if ( $site_icon_url ) : ?> <amp-img src="<?php echo esc_url( $site_icon_url ); ?>" width="32" height="32" class="amp-wp-site-icon"></amp-img> <?php endif; ?> <span class="amp-site-title"> <?php echo esc_html( wptexturize( $this->get( 'blog_name' ) ) ); ?> </span> </a> </div> </header> <article class="amp-wp-article hentry"> <header class="amp-wp-article-header"> <h1 class="amp-wp-title"><?php echo esc_html( $this->get( 'post_title' ) ); ?></h1> <?php //$this->load_parts( apply_filters( 'amp_post_article_header_meta', array( 'meta-author', 'meta-time' ) ) ); ?> <?php a4h_post_meta(); ?> </header> <?php $this->load_parts( array( 'featured-image' ) ); ?> <div class="amp-wp-article-content"> <?php echo $this->get( 'post_amp_content' ); // WPCS: XSS ok. Handled in AMP_Content::transform(). ?> </div> <footer class="amp-wp-article-footer"> <?php //$this->load_parts( apply_filters( 'amp_post_article_footer_meta', array( 'meta-taxonomy', 'meta-comments-link' ) ) ); ?> <div class="amp-wp-meta amp-wp-comments-link"> <a href="<?php the_permalink(); ?>"><?php _e('View Full Version', THEME_TEXT_DOMAIN); ?></a> </div> </footer> </article> <footer class="amp-wp-footer"></footer> <?php do_action( 'amp_post_template_footer', $this ); ?> </body> </html>