The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Statocles::Site - An entire, configured website

VERSION

version 0.068

SYNOPSIS

    my $site = Statocles::Site->new(
        title => 'My Site',
        nav => [
            { title => 'Home', href => '/' },
            { title => 'Blog', href => '/blog' },
        ],
        apps => {
            blog => Statocles::App::Blog->new( ... ),
        },
    );

    $site->deploy;

DESCRIPTION

A Statocles::Site is a collection of applications.

ATTRIBUTES

title

The site title, used in templates.

base_url

The base URL of the site, including protocol and domain. Used mostly for feeds.

This can be overridden by base_url in Deploy.

theme

The theme for this site. All apps share the same theme.

apps

The applications in this site. Each application has a name that can be used later.

plugins

The plugins in this site. Each plugin has a name that can be used later.

index

The page path to use for the site index. Make sure to include the leading slash (but /index.html is optional). Defaults to /, so any app with url_root of / will be the index.

Named navigation lists. A hash of arrays of hashes with the following keys:

    title - The title of the link
    href - The href of the link

The most likely name for your navigation will be main. Navigation names are defined by your theme. For example:

    {
        main => [
            {
                title => 'Blog',
                href => '/blog',
            },
            {
                title => 'Contact',
                href => '/contact.html',
            },
        ],
    }
    # site.yml
    links:
        stylesheet:
            - href: /theme/css/site.css
        script:
            - href: /theme/js/site.js

Related links for this site. Links are used to build relationships to other web addresses. Link categories are named based on their relationship. Some possible categories are:

stylesheet

Additional stylesheets for this site.

script

Additional scripts for this site.

Each category contains an arrayref of hashrefs of link objects. See the Statocles::Link documentation for a full list of supported attributes. The most common attributes are:

href

The URL for the link.

text

The text of the link. Not needed for stylesheet or script links.

images

    # site.yml
    images:
        icon: /images/icon.png

Related images for this document. These are used by themes to display images in appropriate templates. Each image has a category, like title, banner, or icon, mapped to an image object. See the Statocles::Image documentation for a full list of supported attributes. The most common attributes are:

src

The source path of the image. Relative paths will be resolved relative to this document.

alt

The alternative text to display if the image cannot be downloaded or rendered. Also the text to use for non-visual media.

Useful image names are:

icon

The shortcut icon for the site.

build_store

The store object to use for build(). This is a workspace and will be rebuilt often, using the build and daemon commands. This is also the store the daemon command reads to serve the site.

deploy

The deploy object to use for deploy(). This is intended to be the production deployment of the site. A build gets promoted to production by using the deploy command.

data

A hash of arbitrary data available to theme templates. This is a good place to put extra structured data like social network links or make easy customizations to themes like header image URLs.

log

A Mojo::Log object to write logs to. Defaults to STDERR.

markdown

The Text::Markdown object to use to turn Markdown into HTML. Defaults to a plain Text::Markdown object.

Any object with a "markdown" method will work here.

METHODS

BUILD

Register this site as the global site.

app

    my $app = $site->app( $name );

Get the app with the given name.

    my @links = $site->nav( $key );

Get the list of links for the given nav key. Each link is a Statocles::Link object.

    title - The title of the link
    href - The href of the link

If the named nav does not exist, returns an empty list.

build

    $site->build( %options );

Build the site in its build location. The %options hash is passed in to every app's pages method, allowing for customization of app behavior based on command-line.

deploy

    $site->deploy( %options );

Deploy the site to its destination. The %options are passed to the appropriate deploy object.

links

    my @links = $site->links( $key );
    my $link = $site->links( $key );
    $site->links( $key => $add_link );

Get or append to the links set for the given key. See the links attribute for some commonly-used keys.

If only one argument is given, returns a list of link objects. In scalar context, returns the first link in the list.

If two arguments are given, append the new link to the given key. $add_link may be a URL string, a hash reference of link attributes, or a Statocles::Link object. When adding links, nothing is returned.

url

    my $url = $site->url( $page_url );

Get the full URL to the given path by prepending the base_url.

EVENTS

The site object exposes the following events.

before_build_write

This event is fired after the pages have been built by the apps, but before any page is written to the build_store.

You can use this event to add new pages or edit the pages already created.

The event will be a Statocles::Event::Pages object containing all the pages built by the apps.

build

This event is fired after the site has been built and the pages written to the build_store.

The event will be a Statocles::Event::Pages object containing all the pages built by the site.

AUTHOR

Doug Bell <preaction@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Doug Bell.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.