amnah/yii-bootstrap-starter-theme

Yii - Bootstrap 3 Starter Theme

Maintainers

👁 amnah

Package info

github.com/amnah/yii-bootstrap-starter-theme

pkg:composer/amnah/yii-bootstrap-starter-theme

Statistics

Installs: 41

Dependents: 0

Suggesters: 0

Stars: 8

Open Issues: 0

dev-master 2013-08-27 07:01 UTC

Requires

None

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 642d1cd0addd1da317d3d2d7af9f44c452b4fe2c

  • amnah

bootstrapyii

This package is not auto-updated.

Last update: 2026-06-15 22:38:26 UTC


README

This is a simple Yii theme for getting you up and running with Twitter's bootstrap. It is simply a theme and not a full-blown extension like Chris83's.

It does not have programming widgets because it is meant for people who prefer to write out all of the markup/code themselves.

This theme does not contain any of the actual Twitter Bootstrap code. It gets the latest css and js files from http://bootstrapcdn.com.

However, it does contain the html5shiv.js and respond.js for IE8 support.

Installation

  • Extract files into the Yii application at themes/[name of theme]/

Usage

  • Add theme info into main configuration
return array(
 'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
 'name'=>'My Web Application',
 'theme'=>'[name of theme]', // THIS LINE HERE
  • Update versions if desired (in views/layouts/main.php)
<?php 

// define versions
$bootstrapVersion = "3.0.0";
$fontAwesomeVersion = "3.2.1";
$jqueryVersion = "2.0.3";
$queryUiVersion = "1.10.3";