aboutsummaryrefslogtreecommitdiff
path: root/generators
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2022-07-07 05:14:31 -0400
committerThedro Neely <thedroneely@gmail.com>2022-07-07 05:14:31 -0400
commit203b2889f124ac84db842baee4722379f234b7f6 (patch)
treeff71a333b8cd45660d667f243152e0e8ed0e886d /generators
parent1d4d75341fc7df0ccd4eee68f003c3c853b3bbc6 (diff)
downloadthedroneely.com-203b2889f124ac84db842baee4722379f234b7f6.tar.gz
thedroneely.com-203b2889f124ac84db842baee4722379f234b7f6.tar.bz2
thedroneely.com-203b2889f124ac84db842baee4722379f234b7f6.zip
app/views: Remove unused schemas
Diffstat (limited to 'generators')
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/archive.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/baseof.html4
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/list.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/section.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/single.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/subsection.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/taxonomy.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/abstracts/section.html2
9 files changed, 10 insertions, 10 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/archive.html b/generators/hugo/themes/tdro/layouts/_default/archive.html
index 2356340..7399a98 100644
--- a/generators/hugo/themes/tdro/layouts/_default/archive.html
+++ b/generators/hugo/themes/tdro/layouts/_default/archive.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<section class="section is-fullheight" itemscope itemtype="https://schema.org/WebPage">
+<section class="section is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/_default/baseof.html b/generators/hugo/themes/tdro/layouts/_default/baseof.html
index c0b55aa..81c9a1e 100644
--- a/generators/hugo/themes/tdro/layouts/_default/baseof.html
+++ b/generators/hugo/themes/tdro/layouts/_default/baseof.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
-<html class="has-navbar-fixed-top" lang="en-us">
+<html class="has-navbar-fixed-top" lang="en-us" itemscope itemtype="http://schema.org/Article">
-<head itemscope>
+<head>
{{ partial "head.html" . -}}
diff --git a/generators/hugo/themes/tdro/layouts/_default/list.html b/generators/hugo/themes/tdro/layouts/_default/list.html
index 6605db7..78fec9b 100644
--- a/generators/hugo/themes/tdro/layouts/_default/list.html
+++ b/generators/hugo/themes/tdro/layouts/_default/list.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<section class="section" itemscope itemtype="http://schema.org/AboutPage">
+<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/_default/section.html b/generators/hugo/themes/tdro/layouts/_default/section.html
index adb5fbf..47ea0a7 100644
--- a/generators/hugo/themes/tdro/layouts/_default/section.html
+++ b/generators/hugo/themes/tdro/layouts/_default/section.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<section class="section is-fullheight" itemscope itemtype="https://schema.org/AboutPage">
+<section class="section is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/_default/single.html b/generators/hugo/themes/tdro/layouts/_default/single.html
index 09110d0..a3eaf4a 100644
--- a/generators/hugo/themes/tdro/layouts/_default/single.html
+++ b/generators/hugo/themes/tdro/layouts/_default/single.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<main class="section is-block is-fullheight" itemscope itemtype="https://schema.org/WebPage">
+<main class="section is-block is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/_default/subsection.html b/generators/hugo/themes/tdro/layouts/_default/subsection.html
index 8d2cf1c..ffaa3f9 100644
--- a/generators/hugo/themes/tdro/layouts/_default/subsection.html
+++ b/generators/hugo/themes/tdro/layouts/_default/subsection.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<section class="section is-fullheight" itemscope itemtype="https://schema.org/WebPage">
+<section class="section is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/_default/taxonomy.html b/generators/hugo/themes/tdro/layouts/_default/taxonomy.html
index a0090e1..134c19b 100644
--- a/generators/hugo/themes/tdro/layouts/_default/taxonomy.html
+++ b/generators/hugo/themes/tdro/layouts/_default/taxonomy.html
@@ -1,6 +1,6 @@
{{ define "main" }}
{{ $sidenote := "<span class=\"marginnote rightnote\">See an archive of all taxonomies <a href=\"/archives/tags/\">here.</a></span>" }}
-<section class="section is-fullheight" itemscope itemtype="http://schema.org/AboutPage">
+<section class="section is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html b/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
index 1925575..859252f 100644
--- a/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
+++ b/generators/hugo/themes/tdro/layouts/_default/taxonomy_archive.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<section class="section is-fullheight" itemscope itemtype="http://schema.org/AboutPage">
+<section class="section is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">
diff --git a/generators/hugo/themes/tdro/layouts/abstracts/section.html b/generators/hugo/themes/tdro/layouts/abstracts/section.html
index b4121a2..f7dad6c 100644
--- a/generators/hugo/themes/tdro/layouts/abstracts/section.html
+++ b/generators/hugo/themes/tdro/layouts/abstracts/section.html
@@ -1,5 +1,5 @@
{{ define "main" }}
-<section class="section is-fullheight" itemscope itemtype="https://schema.org/AboutPage">
+<section class="section is-fullheight">
<div class="container">
<div class="columns is-centered">
<div class="column is-7">