networkteam/neos-mockup

There is no license information available for the latest version (4.1.0) of this package.

A Neos package providing basic mockup functionality for content-first approach

Installs: 9 581

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 7

Forks: 0

Open Issues: 0

Language:SCSS

Type:neos-package

4.1.0 2023-06-20 15:27 UTC

README

A Neos package providing basic mockup functionality for content-first approach

Install package

  1. Install neos base distribution via composer https://www.neos.io/download-and-extend.html

  2. Require package networkteam/neos-mockup as composer dependency

composer require "networkteam/neos-mockup"
  1. Remove neos/demo package
composer remove package neos/demo
  1. Follow Neos setup (http://your-neos.site/setup) and create a new site package with a dummy site
  2. Log into Neos backend (http://your-neos.site/neos)

Usage Mockup Page

Set prototype of Page to Networkteam.Neos.Mockup.Page

Usage Mockup Header

Set prototype of Header to Networkteam.Neos.Mockup:Components.Molecules.Header

Usage Mockup Body

Set prototype of Body to Networkteam.Neos.Mockup:Components.Templates.Page

Usage Mockup Navigation

Set prototype of Navigation to Networkteam.Neos.Mockup:Components.Organisms.Navbar To use your custom logo / title or else, overwrite certain props you want. E.g.:

  prototype(Networkteam.Neos.Mockup:Components.Organisms.Navbar) {
      title = ${site.context.currentSite.name}
      alt = ''

      titleEntity = Your.Custom.Package:Components.Atoms.Logo {
          title=${props.title}
          alt=${props.alt}
          imageSrc = Neos.Fusion:ResourceUri {
              path = 'resource://Your.Custom.Package/Public/Images/logos/logo.svg'
          }
          link = Neos.Neos:NodeUri {
              node = ${site}
          }
      }
  }

Usage Placeholder

After installation you can use Placeholder-Component like any other Neos-Content-Component.

Custom Styles / Contribution

Use yarn to install dependencies.

We moved the creation of stylesheets to SCSS. Compiling is possible by using yarn start which is a watcher for devlopment. Use yarn build to get a compressed production build.