apnet/layout-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Default layout for all sites

Installs: 901

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 1

Open Issues: 1

Type:symfony-bundle

3.2.0 2016-07-08 15:57 UTC

This package is not auto-updated.

Last update: 2019-02-20 17:39:49 UTC


README

Travis-ci status SensioLabsInsight

Base layout template bundled with Bootstrap, jQuery and html5shiv

Installation

Add requirements to composer.json:

{
  "require" : {
    "apnet/layout-bundle" : "~3.1"
  }
}

Configurations

Register ApnetAsseticImporterBundle and ApnetLayoutBundle bundles in the AppKernel.php file

// ...other bundles ...
$bundles[] = new Apnet\AsseticImporterBundle\ApnetAsseticImporterBundle();
$bundles[] = new Apnet\LayoutBundle\ApnetLayoutBundle();

Twig

Use ApnetLayoutBundle::body.html.twig as a parent for all your layout twig templates

{% extends "ApnetLayoutBundle::body.html.twig" %}

{% block title %}LayoutBundle{% endblock %}

{% block stylesheets_core %}
    {{ parent() }}

    <link href="{{ imported_asset('...css') }}" rel="stylesheet" type="text/css" />
{% endblock %}

{% block body_core %}
    <div class="container">
        ...
    </div>
{% endblock %}

{% block javascripts_core %}
    {{ parent() }}

    <script type="text/javascript" src="{{ imported_asset('...js') }}"></script>
{% endblock %}