Advertisement
Guest User

perch/templates/content/boostrap/text-columns.html

a guest
Mar 5th, 2015
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.19 KB | None | 0 0
  1. <perch:if exists="row-heading">
  2.   <div class="row">
  3.     <div class="col-sm-12">
  4.       <h2><perch:content id="row-heading" type="text" label="Row Heading" required="false" title="true" /></h3>
  5.     </div>
  6.   </div>
  7. </perch:if>
  8. <perch:repeater id="link_list" label="Text Columns" max="12">
  9.   <perch:before>
  10.     <div class="row <perch:content id="text-align" type="select" label="Text Align" options="Left|text-left,Center|text-center,Right|text-right" />">  
  11.   </perch:before>
  12.   <div class="col-sm-<perch:content id="col-span" type="select" label="Column Span" options="1,2,3,4,5,6,7,8,9,10,11,12" help="Make sure the total of all your column spans is not greater than 12" />">
  13.     <perch:if exists="image">
  14.       <img class="img-responsive" style="margin-bottom: 20px;" src="<perch:content type="image" id="image" label="Image" width="800" />" alt="<perch:content type="text" id="image-alt" label="Description" help="e.g. Photo of MD John Smith with his best wig on" title="true" />" />
  15.     </perch:if>
  16.     <perch:content id="column" type="textarea" label="Column" editor="redactor" html="true" imagewidth="640" imageheight="480" />
  17.   </div>
  18.   <perch:after>
  19.     </div>
  20.   </perch:after>
  21. </perch:repeater>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement