Skip to main content

Adds Schema.org attributes to collective.perseo package

Project description

Introduction

This package customize main_template and plone.path_bar, plone.global_sections, plone.header viewlets to insert Schema.org attributes (itemscope, itemtype and itemprop).

Warning! Installing this package the main_template and plone.path_bar, plone.global_sections, plone.header viewlets will be customized, to insert Schema.org attributes. The customizations of these resources in other Themes and Skins could be disabled.

If you don’t want to install the collective.perseoschema package, but you still want Schema.org attributes, the following are the customizations you can do in your theme.

Customizations of plone.path_bar viewlet at these points:

  • Line 2 of path_bar.pt, added itemprop attribute, itemprop=”breadcrumb”:

    <div id="portal-breadcrumbs"
             itemprop="breadcrumb"
    ...

Customizations of plone.global_sections viewlet at these points:

  • Line 1 of section.pt, added itemscope and itemtype attributes in tag nav, itemtype=”http://schema.org/SiteNavigationElement”:

    <nav itemscope="itemscope"
             itemtype="http://schema.org/SiteNavigationElement">
             ...
    </nav>

Customizations of plone.header viewlet at these points:

  • Line 2 of portal_header.pt, added itemscope and itemtype attributes, itemtype=”http://schema.org/WPHeader”:

    <div id="portal-header"
             itemscope="itemscope"
         itemtype="http://schema.org/WPHeader">
         ...

Customizations of sunburst_templates / main_template at these points:

  • Line 18, Taken value of “Add itemscope and itemtype attributes to body tag” field, from Plone SEO Configuration, and value of “itemtype attribute” field from SEO tab:

    ...
    <html xmlns="http://www.w3.org/1999/xhtml"
        tal:define="
            ...
            perseo_context nocall: context/@@perseo-context;
                    itemscope_itemtype python:perseo_context.perseo_itemscope_itemtype();
                    itemtype python:perseo_context.perseo_itemtype()"
    ...
  • Line 61, Added itemscope and itemtype attributes (according to previous values):

    ...
    <body ...
        tal:attributes="...
                        itemscope python:itemscope_itemtype and 'itemscope' or None;
                        itemtype python:itemscope_itemtype and itemtype or None">
    ...
  • Line 94, Added itemprop attribute, itemprop=”mainContentOfPage”:

    ...
    <div id="content" itemprop="mainContentOfPage">
    ...
  • Line 149, Added itemscope and itemtype attributes, itemtype=”http://schema.org/WPSideBar”:

    ...
    <div id="portal-column-one"
            itemscope="itemscope"
            itemtype="http://schema.org/WPSideBar"
    ...
  • Line 161, Added itemscope and itemtype attributes, itemtype=”http://schema.org/WPSideBar”:

    ...
    <div id="portal-column-two"
            itemscope="itemscope"
            itemtype="http://schema.org/WPSideBar"
    ...
  • Line 176, Added itemscope and itemtype attributes, itemtype=”http://schema.org/WPFooter”:

    ...
    <div itemscope="itemscope" itemtype="http://schema.org/WPFooter">
            <div tal:replace="structure provider:plone.portalfooter" />
    </div>
    ...

Credits

Developed with the support of Andrea Pernici. collective.perseo is loosely based on quintagroup.seoptimizer.

Authors

This product was developed by RedTurtle Technology team.

RedTurtle Technology Site

Changelog

0.1.1 (2011-12-14)

  • Fixed layout of fields in seo tab [fdelia]

0.1.0 (2011-10-19)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

collective.perseoschema-0.1.1.tar.gz (19.7 kB view details)

Uploaded Source

File details

Details for the file collective.perseoschema-0.1.1.tar.gz.

File metadata

File hashes

Hashes for collective.perseoschema-0.1.1.tar.gz
Algorithm Hash digest
SHA256 36b13cd32541173fcd45c15db3355066ec874443b73b937c0c9a73be6182d325
MD5 bece1906d6413325ce40c5425386650b
BLAKE2b-256 9cf3f6facbcbaeee75bcbd7d1f51b6345178eeecfb94c03792e278bea8224874

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page