Meta: Article Template

From Tayledras
Jump to: navigation, search
Caption Text Goes Here

Overview

This is a basic template I'm looking to use for all new Tayledras/Wiki articles.

Template Code

<div id="BackToTop"  class="noprint" style="background-color:#DDEFDD; position:fixed;
 bottom:32px; left:2%; z-index:9999; padding:0; margin:0;"><span style="color:blue;
 font-size:8pt; font-face:verdana,sans-serif;  border:0.2em outset #ceebf7;
 padding:0.1em; font-weight:bolder; -moz-border-radius:8px; ">
[[#top| Back to the Top ]]</span></div>

<div style="position:fixed;top:100;right:0">__TOC__</div>

[[File:Vmware-building-aya.png|300px|right|middle|thumb|Caption Text Goes Here]]

== Overview ==
...words and stuff...

== Subheading ==
...more words...

[[Category:HOW-TO]]

Syntax Highlighting Example

1 def quickSort(arr):
2 	less = []
3 	pivotList = []
4 	more = []
5 	if len(arr) <= 1:
6 		return arr
7 	else:
8 		pass