PHPackages                             nitra/nitra-theme-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. nitra/nitra-theme-bundle

ActiveSymfony-bundle[Templating &amp; Views](/categories/templating)

nitra/nitra-theme-bundle
========================

Nitra theme for the symfony2 admingenerator

1.0.1(12y ago)42.3k7MITHTML

Since Dec 26Pushed 10y ago13 watchersCompare

[ Source](https://github.com/nitra/NitraThemeBundle)[ Packagist](https://packagist.org/packages/nitra/nitra-theme-bundle)[ Docs](https://github.com/nitra/NitraThemeBundle/)[ RSS](/packages/nitra-nitra-theme-bundle/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (6)Versions (6)Used By (0)

Getting Started With NitraThemeBundle
=====================================

[](#getting-started-with-nitrathemebundle)

Prerequisites
-------------

[](#prerequisites)

This version of the bundle requires Symfony 2.1. If you are using Symfony 2.0.x, please use the 2.0 branch of the bundle.

### Translations

[](#translations)

If you wish to use default texts provided in this bundle, you have to make sure you have translator enabled in your config.

```
# app/config/config.yml

framework:
    translator: ~
```

For more information about translations, check [Symfony documentation](http://symfony.com/doc/current/book/translation.html).

Installation
------------

[](#installation)

Installation is a 3 step process:

1. Download NitraThemeBundle using composer
2. Enable the Bundle
3. Configure the NitraThemeBundle

### Step 1: Download NitraThemeBundle using composer

[](#step-1-download-nitrathemebundle-using-composer)

Add NitraThemeBundle in your composer.json:

```
{
    "require": {
        "nitra/nitra-theme-bundle": "dev-master"
    }
}
```

Now tell composer to download the bundle by running the command:

```
$ php composer.phar update nitra/nitra-theme-bundle
```

Composer will install the bundle to your project's `vendor/nl` directory.

### Step 2: Enable the bundle

[](#step-2-enable-the-bundle)

Enable the bundle in the kernel:

```
