PHPackages                             kstppv/nitra-theme-bundle-fork - 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. kstppv/nitra-theme-bundle-fork

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

kstppv/nitra-theme-bundle-fork
==============================

Nitra theme for the symfony2 admingenerator

1.0.1(13y ago)023MITHTML

Since Dec 26Pushed 8y ago1 watchersCompare

[ Source](https://github.com/KonstantinPopov/NitraThemeBundle)[ Packagist](https://packagist.org/packages/kstppv/nitra-theme-bundle-fork)[ Docs](https://github.com/nitra/NitraThemeBundle/)[ RSS](/packages/kstppv-nitra-theme-bundle-fork/feed)WikiDiscussions master Synced 2w 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:

```
