Difference between revisions of "Template:ContentWarning"

From Fall of Eden
Jump to navigation Jump to search
Line 7: Line 7:
  
 
<code>
 
<code>
<nowiki>{{{ContentWarning|size=6|color=flame|heading=Warning!|message=This is a warning block template!}}}</nowiki>
+
<nowiki>{{{ContentWarning|color=flame|heading=Warning!|message=This is a warning block template!}}}</nowiki>
 
</code>
 
</code>
 
Size and Color are optional parameters. Size determines the width of the box and defaults to "6" (ie 50% of page width roughly).
 
  
 
Color is a string representation of available [[Bootstrap Colors]]. Defaults to flame.
 
Color is a string representation of available [[Bootstrap Colors]]. Defaults to flame.
Line 18: Line 16:
 
[[Category:Smutosaurus Templates]]
 
[[Category:Smutosaurus Templates]]
 
</noinclude>
 
</noinclude>
<div class="col-md-{{{size|6}}}">
+
<div class="row">
 +
<div class="col-md-8">
 
   <div class="tile {{{color|flame}}}">
 
   <div class="tile {{{color|flame}}}">
 
     <h4>{{{heading|Warning!}}}</h4>  
 
     <h4>{{{heading|Warning!}}}</h4>  
 
     <p class="text-justify">{{{message|This is a warning block template!}}}</p>
 
     <p class="text-justify">{{{message|This is a warning block template!}}}</p>
 
   </div>
 
   </div>
 +
</div>
 +
<div class="col-md-4">
 +
</div>
 
</div>
 
</div>

Revision as of 14:15, 30 November 2014


Content Warning Box Template

Generates a fancy warning box with parametized content.

Usage:

{{{ContentWarning|color=flame|heading=Warning!|message=This is a warning block template!}}}

Color is a string representation of available Bootstrap Colors. Defaults to flame.

Heading and message should be obvious.

Warning!

This is a warning block template!