Strapping is an elegant, responsive, and friendly starter skin for MediaWiki. Its purpose is to provide a good base to build upon, and was primarily created to provide a great default for wiki-as-a-website — but it works well for standard wikis too.
Strapping is built on top of a modified Vector theme from MediaWiki and utilizes Bootstrap (currently Bootstrap 2; soon to be upgraded) for base layout, typography, and additional widgets.
Because Strapping uses Bootstrap with its responsive extension, any site using this skin works well on desktop browsers and scales down to display beautifully on hand-held devices like tablets and smartphones.
Strapping also has complete coverage for all of MediaWiki, including the user preferences and admin pages. All of MediaWiki's features are included, too.
Strapping was made from the need of reworking oVirt.org look attractive, have one place for everyone to edit content (instead of a mix of WordPress and MediaWiki), and have an easy-to-work with site so that anyone could either stick to MediaWiki marked up pages or do some more advanced layout (with columns, etc.) using Bootstrap.
You can see a (customized) instance of Strapping in action by visiting http://oVirt.org/
- Webserver with PHP (needed for MediaWiki)
- MediaWiki 1.18.1 or higher (1.18.1 was the first release with jQuery 1.7+, needed for Bootstrap)
-
Change to the "skins" subdirectory of your MediaWiki installation:
cd skins
-
Clone the repository:
git clone https://github.com/OSAS/strapping-mediawiki strapping
-
Add the following to
LocalSettings.php
:require_once( "$IP/skins/strapping/strapping.php" ); $wgDefaultSkin = "strapping";
(You may safely remove or comment out other mentions of
$wgDefaultSkin
.) -
Edit the wiki page
MediaWiki:Sidebar
with your web browser to change your navigation links. -
Customize the skin to make the site look how you'd want. (See "Customization", below.)
Strapping was originally designed to be used in a wiki-as-a-website mode, where, to someone not signed in, it would be unable to notice that the site is powered by MediaWiki. (If someone is signed in and has access, then "edit" links and the toolbar appear.)
You can either leave full edit access available to anyone (even anonymous editors), which is the default for MediaWiki, or lock it down a bit.
To operate in this mode, add the following to LocalSettings.php
:
$wgGroupPermissions['*']['edit'] = false;
It's easy to make the theme look however desired, and there are several methods on achieving results.
Bootstrap has a customization page where you can change several aspects of the Bootstrap theme. Simply:
- Visit the Bootstrap customizer page
- change values
- click the giant button at the bottom of the page
- replace Strapping's
bootstrap
directory with the one in your ZIP file
Note: Since Bootstrap is based on the LESS CSS preprocessor, you can also achieve similar results from a command line.
Bootswatch is a project that provides drop-in Bootstrap CSS replacements.
Visit the site and grab a theme to start using it immediately.
This method can be used without any other customizations, or in addition to altering Bootstrap themes.
- In the
screen.css
file, uncomment thetheme.css
import. - Add custom CSS to the
theme.css
file, including any colors and fonts you'd like to use.
Custom fonts can be found on Google Web Fonts
and you can make your own @font-face
-ready fonts
(if you have the permission to do so)
with FontSquirrel's generator
While plain vanilla MediaWiki markup can be used, sites using Strapping can also utilize any of Bootstrap's CSS for more advanced layout and markup.
There are a few Strapping-specific CSS classes you can use.
FIXME: Elaborate on strapping-specific CSS classes here
Do NOT use tables for layout. Instead, use Bootstrap's scaffolding to do layout.
Bootstrap scaffolding is based on having rows
that are formed with 12 possible columns.
To span a column, you use a classname of span
plus the number of columns you'd like to span,
such as span2
to use up 2 columns.
Everything should add up to 12
(or less, if there's going to be space on the right side).
Make sure to wrap the spans into row
s for everything to work correctly.
It looks something like this:
<div class="row">
<div class="span6"></div>
<div class="span6"></div>
</div>
<div class="row">
<div class="span6 offset2"></div>
<div class="span3"></div>
<div class="span1"></div>
</div>
For more information, please visit Bootstrap's documentation.
Please consult MediaWiki's formatting page for help with writing wiki text.
If you're feeling adventurous and want to use some more advanced formatting,
you can attach any Bootstrap classes to div
s.
Strapping is open source, and built on open source projects.
Please check out the LICENSE file for details.