diff --git a/ampsubtheme_example/templates/layout/html.tpl.php b/ampsubtheme_example/templates/layout/html.tpl.php
index a1fe5ab..3dc15a1 100644
--- a/ampsubtheme_example/templates/layout/html.tpl.php
+++ b/ampsubtheme_example/templates/layout/html.tpl.php
@@ -49,17 +49,6 @@
     <meta charset="utf-8">
     <title><?php print $head_title; ?></title>
     <?php print $head; ?>
-    <script type="application/ld+json">
-        {
-          "@context": "http://schema.org",
-          "@type": "NewsArticle",
-          "headline": "<?php print $head_title; ?>",
-          "datePublished": "<?php print $date_published; ?>"<?php if (isset($logo_url)): ?>,
-          "image": [
-            "<?php print $logo_url; ?>"
-          ]<?php endif; ?>
-        }
-      </script>
     <?php include $amptheme_path_file . '/templates/amp-css/amp-boilerplate-styles-min.inc' ?>
     <style amp-custom>
       <?php include $ampsubtheme_path_file . '/css/amp-custom-styles.css' ?>
diff --git a/amptheme/template.php b/amptheme/template.php
index 5567337..aee92dc 100644
--- a/amptheme/template.php
+++ b/amptheme/template.php
@@ -90,26 +90,6 @@ function amptheme_preprocess_html(&$variables) {
   );
 
   drupal_add_html_head($viewport, 'viewport');
-
-  // Set default date published of now.
-  $variables['date_published'] = date(DATE_ATOM, time());
-
-  // Check if we have a node.
-  if (!empty($node) && $node = menu_get_object()) {
-    // Set the date published to the creation date of the node.
-    if ($date_published = date(DATE_ATOM, $node->created)) {
-      $variables['date_published'] = $date_published;
-    }
-  }
-
-  // Set the url of the theme logo if it exists.
-  $variables['logo_url'] = '';
-  if (!empty($logo_url = theme_get_setting('logo'))) {
-    $headers=get_headers($logo_url);
-    if (stripos($headers[0],"200 OK")?true:false) {
-      $variables['logo_url'] = $logo_url;
-    }
-  }
 }
 
 /**
diff --git a/amptheme/templates/layout/html.tpl.php b/amptheme/templates/layout/html.tpl.php
index 71d17c8..0dce7ff 100644
--- a/amptheme/templates/layout/html.tpl.php
+++ b/amptheme/templates/layout/html.tpl.php
@@ -49,17 +49,6 @@
     <meta charset="utf-8">
     <title><?php print $head_title; ?></title>
     <?php print $head; ?>
-    <script type="application/ld+json">
-      {
-        "@context": "http://schema.org",
-        "@type": "NewsArticle",
-        "headline": "<?php print $head_title; ?>",
-        "datePublished": "<?php print $date_published; ?>"<?php if (isset($logo_url)): ?>,
-        "image": [
-          "<?php print $logo_url; ?>"
-        ]<?php endif; ?>
-      }
-    </script>
     <?php include $amptheme_path_file . '/templates/amp-css/amp-boilerplate-styles-min.inc' ?>
     <script async src="https://cdn.ampproject.org/v0.js"></script>
   </head>
