2017 © Pedro Peláez
 

typo3-flow-package seotool

SeoTool provides meta information and additional title properties for navigation.

image

dmf/seotool

SeoTool provides meta information and additional title properties for navigation.

  • Wednesday, October 8, 2014
  • by dohomi
  • Repository
  • 1 Watchers
  • 1 Stars
  • 2 Installations
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Neos-Plugin-DMF.SeoTool

This plugin provides some useful NodeType properties for pages. Navigation labels, link titles and some meta content like description and canonical tags will be provided., (*1)

Installation

Clone this repository into your application folder:, (*2)

* cd ROOT/Packages/Application
* git clone git@github.com:dohomi/Neos-Plugin-DMF.SeoTool.git DMF.SeoTool

Then check if the plugin needs to get activated inside of your package management. Check if the plugin is listed:, (*3)

./flow package:list
./flow package:activate dmf/seotool

Use of this plugin

You will see additional fields inside of your page properties. You can fill them out and after this you need to adjust your Root.ts2 inside of your site package, (*4)

page = Page {
    head {
        (...)
        titleTag < DMF.SeoTool:PageTitle

        metadata < DMF.SeoTool:MetaContent

        canonicalReference < DMF.SeoTool:Canonical
        canonicalReference.alwaysInclude = 1
    }

    body {
        (...)
        content {
            (...)
            websiteTitle =  ${q(node).filter('[instanceof TYPO3.Neos.NodeTypes:Page]').property('websiteTitle')}
        }
    }
}

Inside of your page template you can include the websiteTitle like following sample code:, (*5)

<f:if condition="{content.websiteTitle}">
    <h1 class="page-header">{content.websiteTitle}</h1>
</f:if>

The Versions

08/10 2014

dev-master

9999999-dev

SeoTool provides meta information and additional title properties for navigation.

  Sources   Download

GPL-3.0+

The Requires

 

08/10 2014

1.1.0

1.1.0.0

SeoTool provides meta information and additional title properties for navigation.

  Sources   Download

The Requires