2017 © Pedro Peláez
 

silverstripe-vendormodule silverstripe-amppages

Provides a basic support framework for AMP pages in SS4

image

dorsetdigital/silverstripe-amppages

Provides a basic support framework for AMP pages in SS4

  • Tuesday, February 13, 2018
  • by DorsetDigital
  • Repository
  • 2 Watchers
  • 1 Stars
  • 80 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 10 % Grown

The README.md

silverstripe-amppages

Adds semi-automated AMP page functionality and provides some basic assistance in creating AMP pages in Silverstripe 4., (*1)

Scrutinizer Code Quality Build Status License Version, (*2)

Requirements

*Silverstripe 4.0.x, (*3)

Installation

  • Install the code with composer require dorsetdigital/silverstripe-amppages
  • Run a dev/build?flush to update your project

Usage

Please note: this is not an 'out-of-the-box' solution, you'll need to do some work as well!, (*4)

The add-on provides some of the basic framework for getting your site AMP-enabled. For pages in the SiteTree, a link is added to the html head which points at an AMP version of the page. There are base templates to deal with the fundamental requirements. These include some basic AMP boilerplate., (*5)

The controller which handles the AMP pages forcibly removes any scripts, CSS, etc. added via Requirements to the parent page. This is due to the strict limitations on what can be included in AMP. There is a base page template called Amp.ss and additional page types can be templated by adding a file called ClassName_amp.ss to your theme in the same directory as the non-AMP template., (*6)

In line with the AMP recommendations, CSS should be minified and included inline in the page.
To try and keep a consistent workflow, the Requirements class has been extended to provide the ability to inject AMP CSS into the AMP version of the page automatically.
It can be used in your page controller class as follows:, (*7)

```use DorsetDigital\SilverStripeAmpPages\AmpPagesRequirementsExtension;, (*8)

class ExamplePageController extends \PageController { public function init() { parent::init(); AmpPagesRequirementsExtension::ampCSS('amp'); } } ```, (*9)

The above would automatically find a CSS file called amp.css in your theme's CSS directory and add the contents inline in the correct <style amp-custom> tag. Additional style sheets can be added by calling the ampCSS() method again, they will be appended. (Just remember, there's a size limit on the amount of CSS in AMP), (*10)

Useful Links

See The AMP Project for more information about what you can and can't do in an AMP page, (*11)

Credits

The Versions

13/02 2018

dev-master

9999999-dev https://github.com/DorsetDigital/silverstripe-amppages

Provides a basic support framework for AMP pages in SS4

  Sources   Download

BSD-3-Clause

The Requires

 

by Tim Burt

html silverstripe amp amp-pages

13/02 2018

dev-scrutinizer-patch-1

dev-scrutinizer-patch-1 https://github.com/DorsetDigital/silverstripe-amppages

Provides a basic support framework for AMP pages in SS4

  Sources   Download

BSD-3-Clause

The Requires

 

by Tim Burt

html silverstripe amp amp-pages

01/02 2018

v1.0.0beta

1.0.0.0-beta https://github.com/DorsetDigital/silverstripe-amppages

Provides a basic support framework for AMP pages in SS4

  Sources   Download

BSD-3-Clause

The Requires

 

by Tim Burt

html silverstripe amp amp-pages